├── .gitattributes ├── .gitignore ├── FastCopy.sln ├── FastCopy ├── AcrylicHelper.cpp ├── AcrylicHelper.h ├── AnimatedValue.cpp ├── AnimatedValue.h ├── AnimatedWindowSize.cpp ├── AnimatedWindowSize.h ├── App.idl ├── App.xaml ├── App.xaml.cpp ├── App.xaml.h ├── AppLaunchMode.h ├── Assets │ ├── BadgeLogo.scale-100.png │ ├── BadgeLogo.scale-125.png │ ├── BadgeLogo.scale-150.png │ ├── BadgeLogo.scale-200.png │ ├── BadgeLogo.scale-400.png │ ├── FileDefault.ico │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── Main.ico │ ├── Main.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── CommandLine.cpp ├── CommandLine.h ├── CommandLineHandler.cpp ├── CommandLineHandler.h ├── Conflict.h ├── Console.cpp ├── Console.h ├── CopyDialog.cpp ├── CopyDialog.h ├── CopyDialog.idl ├── CopyDialog.xaml ├── CopyDialogWindow.idl ├── CopyDialogWindow.xaml ├── CopyDialogWindow.xaml.cpp ├── CopyDialogWindow.xaml.h ├── CreateSuspend.h ├── DebugFileSize.cpp ├── DebugFileSize.h ├── DebugLogger.cpp ├── DebugLogger.h ├── DependentValue.cpp ├── DependentValue.h ├── DependentValue.idl ├── ExistingDir.h ├── Fallback.cpp ├── Fallback.h ├── FastCopy.vcxproj ├── FastCopy.vcxproj.filters ├── FastcopySettingsSingleInstanceLock.cpp ├── FastcopySettingsSingleInstanceLock.h ├── FileCompareViewModel.cpp ├── FileCompareViewModel.h ├── FileCompareViewModel.idl ├── FileInfoViewModel.cpp ├── FileInfoViewModel.h ├── FileInfoViewModel.idl ├── FileMenu.cpp ├── FileMenu.h ├── FileMenu.idl ├── FileTime.cpp ├── FileTime.h ├── FileWrapper.cpp ├── FileWrapper.h ├── GdiplusInitializer.h ├── Global.cpp ├── Global.h ├── ICopyBase.idl ├── ImageUtils.cpp ├── ImageUtils.h ├── MutexWrapper.cpp ├── MutexWrapper.h ├── NewDir.h ├── NewFile.cpp ├── NewFile.h ├── Notification.cpp ├── Notification.h ├── Ntdll.cpp ├── Ntdll.h ├── NumberToStringConverter.cpp ├── NumberToStringConverter.h ├── NumberToStringConverter.idl ├── OutputRegexParseBase.hpp ├── Package.appxmanifest ├── PathUtils.h ├── ProcessIOUpdater.hpp ├── ProcessIoCounter.cpp ├── ProcessIoCounter.h ├── PropertyChangeHelper.hpp ├── ReadableUnitConverter.h ├── ReadableUnitConverterWinRT.cpp ├── ReadableUnitConverterWinRT.h ├── ReadableUnitConverterWinRT.idl ├── Resource.rc ├── ResourceHelper.cpp ├── ResourceHelper.h ├── RobocopyArgs.cpp ├── RobocopyArgs.h ├── RobocopyInjectDll.cpp ├── RobocopyInjectDll.h ├── RobocopyJobFile.h ├── RobocopyProcess.cpp ├── RobocopyProcess.h ├── RobocopyProcessStatus.cpp ├── RobocopyProcessStatus.h ├── RobocopyViewModel.cpp ├── RobocopyViewModel.h ├── RobocopyViewModel.idl ├── Same.h ├── Settings.h ├── SettingsChangeListener.cpp ├── SettingsChangeListener.h ├── SettingsViewModel.cpp ├── SettingsViewModel.h ├── SettingsViewModel.idl ├── SettingsWindow.idl ├── SettingsWindow.xaml ├── SettingsWindow.xaml.cpp ├── SettingsWindow.xaml.h ├── ShellCopy.cpp ├── ShellCopy.h ├── SpeedGraph.idl ├── SpeedGraph.xaml ├── SpeedGraph.xaml.cpp ├── SpeedGraph.xaml.h ├── SpeedGraphData.cpp ├── SpeedGraphData.h ├── StoryboardWrapper.cpp ├── StoryboardWrapper.h ├── Strings │ ├── de-DE │ │ └── Resources.resw │ ├── en-US │ │ └── Resources.resw │ ├── es-ES │ │ └── Resources.resw │ └── zh-CN │ │ └── Resources.resw ├── TaskFile.cpp ├── TaskFile.h ├── Taskbar.cpp ├── Taskbar.h ├── TaskbarControl.cpp ├── TaskbarControl.h ├── TaskbarControl.idl ├── TilesControl.cpp ├── TilesControl.h ├── TilesControl.idl ├── UIThreadWrapper.cpp ├── UIThreadWrapper.h ├── ViewModelLocator.cpp ├── ViewModelLocator.h ├── WelcomeWindow.idl ├── WelcomeWindow.xaml ├── WelcomeWindow.xaml.cpp ├── WelcomeWindow.xaml.h ├── WinRTFileTime.cpp ├── WinRTFileTime.h ├── WindowHelper.cpp ├── WindowHelper.h ├── app.manifest ├── main.cpp ├── packages.config ├── pch.cpp ├── pch.h ├── resource.h └── resource1.h ├── FastCopyShellExtension ├── CopyOperation.h ├── CopyOperationNames.cpp ├── CopyOperationNames.h ├── DllIconFormatter.cpp ├── DllIconFormatter.h ├── FastCopyRootCommand.cpp ├── FastCopyRootCommand.h ├── FastCopyShellExtension.rc ├── FastCopyShellExtension.res ├── FastCopyShellExtension.vcxproj ├── FastCopyShellExtension.vcxproj.filters ├── FastCopySubCommand.cpp ├── FastCopySubCommand.h ├── IconProvider.cpp ├── IconProvider.h ├── Icons │ ├── 212826788-9eeab669-783c-472b-98ed-ee049984cc19.ico │ ├── copy dark blue.ico │ ├── copy dark.ico │ ├── copy light blue.ico │ ├── copy light.ico │ ├── cut dark blue.ico │ ├── cut dark.ico │ ├── cut light blue.ico │ ├── cut light.ico │ ├── delete dark.ico │ ├── delete light.ico │ ├── paste dark blue.ico │ ├── paste dark.ico │ ├── paste light blue.ico │ └── paste light.ico ├── Recorder.cpp ├── Recorder.h ├── Registry.cpp ├── Registry.h ├── ShellWindows.cpp ├── ShellWindows.h ├── Source.def ├── WebBrowser2.cpp ├── WebBrowser2.h ├── dllmain.cpp ├── packages.config └── resource.h ├── LICENSE.txt ├── PackageDlls ├── boost_filesystem-vc143-mt-x64-1_82.dll └── fmt.dll ├── Public ├── COMInitializeHelper.h ├── PackageConfig.h ├── ShellItem.cpp ├── ShellItem.h ├── ShellItemArray.cpp └── ShellItemArray.h ├── README.md ├── RobocopyInjection ├── RobocopyInjection.vcxproj ├── RobocopyInjection.vcxproj.filters ├── dllmain.cpp ├── framework.h ├── pch.cpp └── pch.h ├── Screenshots ├── NewMenuCopy_Dark.png ├── NewMenuCopy_Light.png ├── NewMenuPaste_Dark.png ├── OldMenuCopy_Dark.png ├── confirmation-dialog.png ├── drama-1.png ├── figma.png ├── install-cert.png ├── notification.png ├── open_cert.png ├── settings-en.png ├── settings.png ├── speed-graph.png └── taskbar-icon.png ├── SpeedTest ├── AllImplementations.h ├── AutoRegister.h ├── BasicInteraction.cpp ├── BasicInteraction.h ├── BigFiles.cpp ├── BigFiles.h ├── COMApiTest.cpp ├── COMApiTest.h ├── CommandLineConfig.cpp ├── CommandLineConfig.h ├── Config.cpp ├── Config.h ├── ConfigArchive.h ├── Env.cpp ├── Env.h ├── ExplorerGuard.cpp ├── ExplorerGuard.h ├── FileOpenDialog.cpp ├── FileOpenDialog.h ├── FilesystemApiTest.cpp ├── FilesystemApiTest.h ├── ICopyBase.h ├── Process.h ├── Random4KFiles.cpp ├── Random4KFiles.h ├── RobocopyTest.cpp ├── RobocopyTest.h ├── SpeedTest.vcxproj ├── SpeedTest.vcxproj.filters ├── TUI.cpp ├── TUI.h ├── TestCaseBase.cpp ├── TestCaseBase.h ├── TestFactory.cpp ├── TestFactory.h ├── TestOperation.h ├── TestResult.h ├── Win32ApiTest.cpp ├── Win32ApiTest.h ├── XCopyTest.cpp ├── XCopyTest.h ├── main.cpp └── packages.config ├── UnitTest ├── UnitTest.cpp ├── UnitTest.vcxproj ├── UnitTest.vcxproj.filters ├── pch.cpp └── pch.h └── vcpkg.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/.gitignore -------------------------------------------------------------------------------- /FastCopy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy.sln -------------------------------------------------------------------------------- /FastCopy/AcrylicHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/AcrylicHelper.cpp -------------------------------------------------------------------------------- /FastCopy/AcrylicHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/AcrylicHelper.h -------------------------------------------------------------------------------- /FastCopy/AnimatedValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/AnimatedValue.cpp -------------------------------------------------------------------------------- /FastCopy/AnimatedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/AnimatedValue.h -------------------------------------------------------------------------------- /FastCopy/AnimatedWindowSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/AnimatedWindowSize.cpp -------------------------------------------------------------------------------- /FastCopy/AnimatedWindowSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/AnimatedWindowSize.h -------------------------------------------------------------------------------- /FastCopy/App.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/App.idl -------------------------------------------------------------------------------- /FastCopy/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/App.xaml -------------------------------------------------------------------------------- /FastCopy/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/App.xaml.cpp -------------------------------------------------------------------------------- /FastCopy/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/App.xaml.h -------------------------------------------------------------------------------- /FastCopy/AppLaunchMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/AppLaunchMode.h -------------------------------------------------------------------------------- /FastCopy/Assets/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /FastCopy/Assets/BadgeLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/BadgeLogo.scale-125.png -------------------------------------------------------------------------------- /FastCopy/Assets/BadgeLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/BadgeLogo.scale-150.png -------------------------------------------------------------------------------- /FastCopy/Assets/BadgeLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/BadgeLogo.scale-200.png -------------------------------------------------------------------------------- /FastCopy/Assets/BadgeLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/BadgeLogo.scale-400.png -------------------------------------------------------------------------------- /FastCopy/Assets/FileDefault.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/FileDefault.ico -------------------------------------------------------------------------------- /FastCopy/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /FastCopy/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /FastCopy/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /FastCopy/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /FastCopy/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /FastCopy/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /FastCopy/Assets/Main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Main.ico -------------------------------------------------------------------------------- /FastCopy/Assets/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Main.png -------------------------------------------------------------------------------- /FastCopy/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /FastCopy/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /FastCopy/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /FastCopy/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /FastCopy/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /FastCopy/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /FastCopy/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /FastCopy/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /FastCopy/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /FastCopy/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /FastCopy/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /FastCopy/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /FastCopy/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /FastCopy/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /FastCopy/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /FastCopy/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /FastCopy/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /FastCopy/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /FastCopy/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /FastCopy/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /FastCopy/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /FastCopy/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /FastCopy/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CommandLine.cpp -------------------------------------------------------------------------------- /FastCopy/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CommandLine.h -------------------------------------------------------------------------------- /FastCopy/CommandLineHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CommandLineHandler.cpp -------------------------------------------------------------------------------- /FastCopy/CommandLineHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CommandLineHandler.h -------------------------------------------------------------------------------- /FastCopy/Conflict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Conflict.h -------------------------------------------------------------------------------- /FastCopy/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Console.cpp -------------------------------------------------------------------------------- /FastCopy/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Console.h -------------------------------------------------------------------------------- /FastCopy/CopyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CopyDialog.cpp -------------------------------------------------------------------------------- /FastCopy/CopyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CopyDialog.h -------------------------------------------------------------------------------- /FastCopy/CopyDialog.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CopyDialog.idl -------------------------------------------------------------------------------- /FastCopy/CopyDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CopyDialog.xaml -------------------------------------------------------------------------------- /FastCopy/CopyDialogWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CopyDialogWindow.idl -------------------------------------------------------------------------------- /FastCopy/CopyDialogWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CopyDialogWindow.xaml -------------------------------------------------------------------------------- /FastCopy/CopyDialogWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CopyDialogWindow.xaml.cpp -------------------------------------------------------------------------------- /FastCopy/CopyDialogWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CopyDialogWindow.xaml.h -------------------------------------------------------------------------------- /FastCopy/CreateSuspend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/CreateSuspend.h -------------------------------------------------------------------------------- /FastCopy/DebugFileSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/DebugFileSize.cpp -------------------------------------------------------------------------------- /FastCopy/DebugFileSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/DebugFileSize.h -------------------------------------------------------------------------------- /FastCopy/DebugLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/DebugLogger.cpp -------------------------------------------------------------------------------- /FastCopy/DebugLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/DebugLogger.h -------------------------------------------------------------------------------- /FastCopy/DependentValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/DependentValue.cpp -------------------------------------------------------------------------------- /FastCopy/DependentValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/DependentValue.h -------------------------------------------------------------------------------- /FastCopy/DependentValue.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/DependentValue.idl -------------------------------------------------------------------------------- /FastCopy/ExistingDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ExistingDir.h -------------------------------------------------------------------------------- /FastCopy/Fallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Fallback.cpp -------------------------------------------------------------------------------- /FastCopy/Fallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Fallback.h -------------------------------------------------------------------------------- /FastCopy/FastCopy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FastCopy.vcxproj -------------------------------------------------------------------------------- /FastCopy/FastCopy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FastCopy.vcxproj.filters -------------------------------------------------------------------------------- /FastCopy/FastcopySettingsSingleInstanceLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FastcopySettingsSingleInstanceLock.cpp -------------------------------------------------------------------------------- /FastCopy/FastcopySettingsSingleInstanceLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FastcopySettingsSingleInstanceLock.h -------------------------------------------------------------------------------- /FastCopy/FileCompareViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileCompareViewModel.cpp -------------------------------------------------------------------------------- /FastCopy/FileCompareViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileCompareViewModel.h -------------------------------------------------------------------------------- /FastCopy/FileCompareViewModel.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileCompareViewModel.idl -------------------------------------------------------------------------------- /FastCopy/FileInfoViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileInfoViewModel.cpp -------------------------------------------------------------------------------- /FastCopy/FileInfoViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileInfoViewModel.h -------------------------------------------------------------------------------- /FastCopy/FileInfoViewModel.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileInfoViewModel.idl -------------------------------------------------------------------------------- /FastCopy/FileMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileMenu.cpp -------------------------------------------------------------------------------- /FastCopy/FileMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileMenu.h -------------------------------------------------------------------------------- /FastCopy/FileMenu.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileMenu.idl -------------------------------------------------------------------------------- /FastCopy/FileTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileTime.cpp -------------------------------------------------------------------------------- /FastCopy/FileTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileTime.h -------------------------------------------------------------------------------- /FastCopy/FileWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileWrapper.cpp -------------------------------------------------------------------------------- /FastCopy/FileWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/FileWrapper.h -------------------------------------------------------------------------------- /FastCopy/GdiplusInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/GdiplusInitializer.h -------------------------------------------------------------------------------- /FastCopy/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Global.cpp -------------------------------------------------------------------------------- /FastCopy/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Global.h -------------------------------------------------------------------------------- /FastCopy/ICopyBase.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ICopyBase.idl -------------------------------------------------------------------------------- /FastCopy/ImageUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ImageUtils.cpp -------------------------------------------------------------------------------- /FastCopy/ImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ImageUtils.h -------------------------------------------------------------------------------- /FastCopy/MutexWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/MutexWrapper.cpp -------------------------------------------------------------------------------- /FastCopy/MutexWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/MutexWrapper.h -------------------------------------------------------------------------------- /FastCopy/NewDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/NewDir.h -------------------------------------------------------------------------------- /FastCopy/NewFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/NewFile.cpp -------------------------------------------------------------------------------- /FastCopy/NewFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/NewFile.h -------------------------------------------------------------------------------- /FastCopy/Notification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Notification.cpp -------------------------------------------------------------------------------- /FastCopy/Notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Notification.h -------------------------------------------------------------------------------- /FastCopy/Ntdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Ntdll.cpp -------------------------------------------------------------------------------- /FastCopy/Ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Ntdll.h -------------------------------------------------------------------------------- /FastCopy/NumberToStringConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/NumberToStringConverter.cpp -------------------------------------------------------------------------------- /FastCopy/NumberToStringConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/NumberToStringConverter.h -------------------------------------------------------------------------------- /FastCopy/NumberToStringConverter.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/NumberToStringConverter.idl -------------------------------------------------------------------------------- /FastCopy/OutputRegexParseBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/OutputRegexParseBase.hpp -------------------------------------------------------------------------------- /FastCopy/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Package.appxmanifest -------------------------------------------------------------------------------- /FastCopy/PathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/PathUtils.h -------------------------------------------------------------------------------- /FastCopy/ProcessIOUpdater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ProcessIOUpdater.hpp -------------------------------------------------------------------------------- /FastCopy/ProcessIoCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ProcessIoCounter.cpp -------------------------------------------------------------------------------- /FastCopy/ProcessIoCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ProcessIoCounter.h -------------------------------------------------------------------------------- /FastCopy/PropertyChangeHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/PropertyChangeHelper.hpp -------------------------------------------------------------------------------- /FastCopy/ReadableUnitConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ReadableUnitConverter.h -------------------------------------------------------------------------------- /FastCopy/ReadableUnitConverterWinRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ReadableUnitConverterWinRT.cpp -------------------------------------------------------------------------------- /FastCopy/ReadableUnitConverterWinRT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ReadableUnitConverterWinRT.h -------------------------------------------------------------------------------- /FastCopy/ReadableUnitConverterWinRT.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ReadableUnitConverterWinRT.idl -------------------------------------------------------------------------------- /FastCopy/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Resource.rc -------------------------------------------------------------------------------- /FastCopy/ResourceHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ResourceHelper.cpp -------------------------------------------------------------------------------- /FastCopy/ResourceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ResourceHelper.h -------------------------------------------------------------------------------- /FastCopy/RobocopyArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyArgs.cpp -------------------------------------------------------------------------------- /FastCopy/RobocopyArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyArgs.h -------------------------------------------------------------------------------- /FastCopy/RobocopyInjectDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyInjectDll.cpp -------------------------------------------------------------------------------- /FastCopy/RobocopyInjectDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyInjectDll.h -------------------------------------------------------------------------------- /FastCopy/RobocopyJobFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyJobFile.h -------------------------------------------------------------------------------- /FastCopy/RobocopyProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyProcess.cpp -------------------------------------------------------------------------------- /FastCopy/RobocopyProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyProcess.h -------------------------------------------------------------------------------- /FastCopy/RobocopyProcessStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyProcessStatus.cpp -------------------------------------------------------------------------------- /FastCopy/RobocopyProcessStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyProcessStatus.h -------------------------------------------------------------------------------- /FastCopy/RobocopyViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyViewModel.cpp -------------------------------------------------------------------------------- /FastCopy/RobocopyViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyViewModel.h -------------------------------------------------------------------------------- /FastCopy/RobocopyViewModel.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/RobocopyViewModel.idl -------------------------------------------------------------------------------- /FastCopy/Same.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Same.h -------------------------------------------------------------------------------- /FastCopy/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Settings.h -------------------------------------------------------------------------------- /FastCopy/SettingsChangeListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SettingsChangeListener.cpp -------------------------------------------------------------------------------- /FastCopy/SettingsChangeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SettingsChangeListener.h -------------------------------------------------------------------------------- /FastCopy/SettingsViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SettingsViewModel.cpp -------------------------------------------------------------------------------- /FastCopy/SettingsViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SettingsViewModel.h -------------------------------------------------------------------------------- /FastCopy/SettingsViewModel.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SettingsViewModel.idl -------------------------------------------------------------------------------- /FastCopy/SettingsWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SettingsWindow.idl -------------------------------------------------------------------------------- /FastCopy/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SettingsWindow.xaml -------------------------------------------------------------------------------- /FastCopy/SettingsWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SettingsWindow.xaml.cpp -------------------------------------------------------------------------------- /FastCopy/SettingsWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SettingsWindow.xaml.h -------------------------------------------------------------------------------- /FastCopy/ShellCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ShellCopy.cpp -------------------------------------------------------------------------------- /FastCopy/ShellCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ShellCopy.h -------------------------------------------------------------------------------- /FastCopy/SpeedGraph.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SpeedGraph.idl -------------------------------------------------------------------------------- /FastCopy/SpeedGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SpeedGraph.xaml -------------------------------------------------------------------------------- /FastCopy/SpeedGraph.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SpeedGraph.xaml.cpp -------------------------------------------------------------------------------- /FastCopy/SpeedGraph.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SpeedGraph.xaml.h -------------------------------------------------------------------------------- /FastCopy/SpeedGraphData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SpeedGraphData.cpp -------------------------------------------------------------------------------- /FastCopy/SpeedGraphData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/SpeedGraphData.h -------------------------------------------------------------------------------- /FastCopy/StoryboardWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/StoryboardWrapper.cpp -------------------------------------------------------------------------------- /FastCopy/StoryboardWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/StoryboardWrapper.h -------------------------------------------------------------------------------- /FastCopy/Strings/de-DE/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Strings/de-DE/Resources.resw -------------------------------------------------------------------------------- /FastCopy/Strings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Strings/en-US/Resources.resw -------------------------------------------------------------------------------- /FastCopy/Strings/es-ES/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Strings/es-ES/Resources.resw -------------------------------------------------------------------------------- /FastCopy/Strings/zh-CN/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Strings/zh-CN/Resources.resw -------------------------------------------------------------------------------- /FastCopy/TaskFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/TaskFile.cpp -------------------------------------------------------------------------------- /FastCopy/TaskFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/TaskFile.h -------------------------------------------------------------------------------- /FastCopy/Taskbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Taskbar.cpp -------------------------------------------------------------------------------- /FastCopy/Taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/Taskbar.h -------------------------------------------------------------------------------- /FastCopy/TaskbarControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/TaskbarControl.cpp -------------------------------------------------------------------------------- /FastCopy/TaskbarControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/TaskbarControl.h -------------------------------------------------------------------------------- /FastCopy/TaskbarControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/TaskbarControl.idl -------------------------------------------------------------------------------- /FastCopy/TilesControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/TilesControl.cpp -------------------------------------------------------------------------------- /FastCopy/TilesControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/TilesControl.h -------------------------------------------------------------------------------- /FastCopy/TilesControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/TilesControl.idl -------------------------------------------------------------------------------- /FastCopy/UIThreadWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/UIThreadWrapper.cpp -------------------------------------------------------------------------------- /FastCopy/UIThreadWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/UIThreadWrapper.h -------------------------------------------------------------------------------- /FastCopy/ViewModelLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ViewModelLocator.cpp -------------------------------------------------------------------------------- /FastCopy/ViewModelLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/ViewModelLocator.h -------------------------------------------------------------------------------- /FastCopy/WelcomeWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/WelcomeWindow.idl -------------------------------------------------------------------------------- /FastCopy/WelcomeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/WelcomeWindow.xaml -------------------------------------------------------------------------------- /FastCopy/WelcomeWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/WelcomeWindow.xaml.cpp -------------------------------------------------------------------------------- /FastCopy/WelcomeWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/WelcomeWindow.xaml.h -------------------------------------------------------------------------------- /FastCopy/WinRTFileTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/WinRTFileTime.cpp -------------------------------------------------------------------------------- /FastCopy/WinRTFileTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/WinRTFileTime.h -------------------------------------------------------------------------------- /FastCopy/WindowHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/WindowHelper.cpp -------------------------------------------------------------------------------- /FastCopy/WindowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/WindowHelper.h -------------------------------------------------------------------------------- /FastCopy/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/app.manifest -------------------------------------------------------------------------------- /FastCopy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/main.cpp -------------------------------------------------------------------------------- /FastCopy/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/packages.config -------------------------------------------------------------------------------- /FastCopy/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/pch.cpp -------------------------------------------------------------------------------- /FastCopy/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/pch.h -------------------------------------------------------------------------------- /FastCopy/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/resource.h -------------------------------------------------------------------------------- /FastCopy/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopy/resource1.h -------------------------------------------------------------------------------- /FastCopyShellExtension/CopyOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/CopyOperation.h -------------------------------------------------------------------------------- /FastCopyShellExtension/CopyOperationNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/CopyOperationNames.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/CopyOperationNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/CopyOperationNames.h -------------------------------------------------------------------------------- /FastCopyShellExtension/DllIconFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/DllIconFormatter.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/DllIconFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/DllIconFormatter.h -------------------------------------------------------------------------------- /FastCopyShellExtension/FastCopyRootCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/FastCopyRootCommand.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/FastCopyRootCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/FastCopyRootCommand.h -------------------------------------------------------------------------------- /FastCopyShellExtension/FastCopyShellExtension.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/FastCopyShellExtension.rc -------------------------------------------------------------------------------- /FastCopyShellExtension/FastCopyShellExtension.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/FastCopyShellExtension.res -------------------------------------------------------------------------------- /FastCopyShellExtension/FastCopyShellExtension.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/FastCopyShellExtension.vcxproj -------------------------------------------------------------------------------- /FastCopyShellExtension/FastCopyShellExtension.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/FastCopyShellExtension.vcxproj.filters -------------------------------------------------------------------------------- /FastCopyShellExtension/FastCopySubCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/FastCopySubCommand.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/FastCopySubCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/FastCopySubCommand.h -------------------------------------------------------------------------------- /FastCopyShellExtension/IconProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/IconProvider.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/IconProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/IconProvider.h -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/212826788-9eeab669-783c-472b-98ed-ee049984cc19.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/212826788-9eeab669-783c-472b-98ed-ee049984cc19.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/copy dark blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/copy dark blue.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/copy dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/copy dark.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/copy light blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/copy light blue.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/copy light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/copy light.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/cut dark blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/cut dark blue.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/cut dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/cut dark.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/cut light blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/cut light blue.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/cut light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/cut light.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/delete dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/delete dark.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/delete light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/delete light.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/paste dark blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/paste dark blue.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/paste dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/paste dark.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/paste light blue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/paste light blue.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Icons/paste light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Icons/paste light.ico -------------------------------------------------------------------------------- /FastCopyShellExtension/Recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Recorder.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/Recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Recorder.h -------------------------------------------------------------------------------- /FastCopyShellExtension/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Registry.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Registry.h -------------------------------------------------------------------------------- /FastCopyShellExtension/ShellWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/ShellWindows.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/ShellWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/ShellWindows.h -------------------------------------------------------------------------------- /FastCopyShellExtension/Source.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/Source.def -------------------------------------------------------------------------------- /FastCopyShellExtension/WebBrowser2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/WebBrowser2.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/WebBrowser2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/WebBrowser2.h -------------------------------------------------------------------------------- /FastCopyShellExtension/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/dllmain.cpp -------------------------------------------------------------------------------- /FastCopyShellExtension/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/packages.config -------------------------------------------------------------------------------- /FastCopyShellExtension/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/FastCopyShellExtension/resource.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PackageDlls/boost_filesystem-vc143-mt-x64-1_82.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/PackageDlls/boost_filesystem-vc143-mt-x64-1_82.dll -------------------------------------------------------------------------------- /PackageDlls/fmt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/PackageDlls/fmt.dll -------------------------------------------------------------------------------- /Public/COMInitializeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Public/COMInitializeHelper.h -------------------------------------------------------------------------------- /Public/PackageConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Public/PackageConfig.h -------------------------------------------------------------------------------- /Public/ShellItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Public/ShellItem.cpp -------------------------------------------------------------------------------- /Public/ShellItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Public/ShellItem.h -------------------------------------------------------------------------------- /Public/ShellItemArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Public/ShellItemArray.cpp -------------------------------------------------------------------------------- /Public/ShellItemArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Public/ShellItemArray.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/README.md -------------------------------------------------------------------------------- /RobocopyInjection/RobocopyInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/RobocopyInjection/RobocopyInjection.vcxproj -------------------------------------------------------------------------------- /RobocopyInjection/RobocopyInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/RobocopyInjection/RobocopyInjection.vcxproj.filters -------------------------------------------------------------------------------- /RobocopyInjection/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/RobocopyInjection/dllmain.cpp -------------------------------------------------------------------------------- /RobocopyInjection/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/RobocopyInjection/framework.h -------------------------------------------------------------------------------- /RobocopyInjection/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/RobocopyInjection/pch.cpp -------------------------------------------------------------------------------- /RobocopyInjection/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/RobocopyInjection/pch.h -------------------------------------------------------------------------------- /Screenshots/NewMenuCopy_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/NewMenuCopy_Dark.png -------------------------------------------------------------------------------- /Screenshots/NewMenuCopy_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/NewMenuCopy_Light.png -------------------------------------------------------------------------------- /Screenshots/NewMenuPaste_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/NewMenuPaste_Dark.png -------------------------------------------------------------------------------- /Screenshots/OldMenuCopy_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/OldMenuCopy_Dark.png -------------------------------------------------------------------------------- /Screenshots/confirmation-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/confirmation-dialog.png -------------------------------------------------------------------------------- /Screenshots/drama-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/drama-1.png -------------------------------------------------------------------------------- /Screenshots/figma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/figma.png -------------------------------------------------------------------------------- /Screenshots/install-cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/install-cert.png -------------------------------------------------------------------------------- /Screenshots/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/notification.png -------------------------------------------------------------------------------- /Screenshots/open_cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/open_cert.png -------------------------------------------------------------------------------- /Screenshots/settings-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/settings-en.png -------------------------------------------------------------------------------- /Screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/settings.png -------------------------------------------------------------------------------- /Screenshots/speed-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/speed-graph.png -------------------------------------------------------------------------------- /Screenshots/taskbar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/Screenshots/taskbar-icon.png -------------------------------------------------------------------------------- /SpeedTest/AllImplementations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/AllImplementations.h -------------------------------------------------------------------------------- /SpeedTest/AutoRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/AutoRegister.h -------------------------------------------------------------------------------- /SpeedTest/BasicInteraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/BasicInteraction.cpp -------------------------------------------------------------------------------- /SpeedTest/BasicInteraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/BasicInteraction.h -------------------------------------------------------------------------------- /SpeedTest/BigFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/BigFiles.cpp -------------------------------------------------------------------------------- /SpeedTest/BigFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/BigFiles.h -------------------------------------------------------------------------------- /SpeedTest/COMApiTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/COMApiTest.cpp -------------------------------------------------------------------------------- /SpeedTest/COMApiTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/COMApiTest.h -------------------------------------------------------------------------------- /SpeedTest/CommandLineConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/CommandLineConfig.cpp -------------------------------------------------------------------------------- /SpeedTest/CommandLineConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/CommandLineConfig.h -------------------------------------------------------------------------------- /SpeedTest/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/Config.cpp -------------------------------------------------------------------------------- /SpeedTest/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/Config.h -------------------------------------------------------------------------------- /SpeedTest/ConfigArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/ConfigArchive.h -------------------------------------------------------------------------------- /SpeedTest/Env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/Env.cpp -------------------------------------------------------------------------------- /SpeedTest/Env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/Env.h -------------------------------------------------------------------------------- /SpeedTest/ExplorerGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/ExplorerGuard.cpp -------------------------------------------------------------------------------- /SpeedTest/ExplorerGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/ExplorerGuard.h -------------------------------------------------------------------------------- /SpeedTest/FileOpenDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/FileOpenDialog.cpp -------------------------------------------------------------------------------- /SpeedTest/FileOpenDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/FileOpenDialog.h -------------------------------------------------------------------------------- /SpeedTest/FilesystemApiTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/FilesystemApiTest.cpp -------------------------------------------------------------------------------- /SpeedTest/FilesystemApiTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/FilesystemApiTest.h -------------------------------------------------------------------------------- /SpeedTest/ICopyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/ICopyBase.h -------------------------------------------------------------------------------- /SpeedTest/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/Process.h -------------------------------------------------------------------------------- /SpeedTest/Random4KFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/Random4KFiles.cpp -------------------------------------------------------------------------------- /SpeedTest/Random4KFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/Random4KFiles.h -------------------------------------------------------------------------------- /SpeedTest/RobocopyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/RobocopyTest.cpp -------------------------------------------------------------------------------- /SpeedTest/RobocopyTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/RobocopyTest.h -------------------------------------------------------------------------------- /SpeedTest/SpeedTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/SpeedTest.vcxproj -------------------------------------------------------------------------------- /SpeedTest/SpeedTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/SpeedTest.vcxproj.filters -------------------------------------------------------------------------------- /SpeedTest/TUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/TUI.cpp -------------------------------------------------------------------------------- /SpeedTest/TUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/TUI.h -------------------------------------------------------------------------------- /SpeedTest/TestCaseBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/TestCaseBase.cpp -------------------------------------------------------------------------------- /SpeedTest/TestCaseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/TestCaseBase.h -------------------------------------------------------------------------------- /SpeedTest/TestFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/TestFactory.cpp -------------------------------------------------------------------------------- /SpeedTest/TestFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/TestFactory.h -------------------------------------------------------------------------------- /SpeedTest/TestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/TestOperation.h -------------------------------------------------------------------------------- /SpeedTest/TestResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/TestResult.h -------------------------------------------------------------------------------- /SpeedTest/Win32ApiTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/Win32ApiTest.cpp -------------------------------------------------------------------------------- /SpeedTest/Win32ApiTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/Win32ApiTest.h -------------------------------------------------------------------------------- /SpeedTest/XCopyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/XCopyTest.cpp -------------------------------------------------------------------------------- /SpeedTest/XCopyTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/XCopyTest.h -------------------------------------------------------------------------------- /SpeedTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/main.cpp -------------------------------------------------------------------------------- /SpeedTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/SpeedTest/packages.config -------------------------------------------------------------------------------- /UnitTest/UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/UnitTest/UnitTest.cpp -------------------------------------------------------------------------------- /UnitTest/UnitTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/UnitTest/UnitTest.vcxproj -------------------------------------------------------------------------------- /UnitTest/UnitTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/UnitTest/UnitTest.vcxproj.filters -------------------------------------------------------------------------------- /UnitTest/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/UnitTest/pch.cpp -------------------------------------------------------------------------------- /UnitTest/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/UnitTest/pch.h -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HO-COOH/FastCopy/HEAD/vcpkg.json --------------------------------------------------------------------------------