Search the Community
Showing results for tags 'copying'.
-
I like and have been using TeraCopy, a third party program, for many years. Mostly it is a great program, but it does have some issues. On Windows XP for instance, Thumbs.db files could often hold up a copy or move process until the user manually responded to the error prompt. Some other issues I discuss below. PLEASE NOTE - I am not related to or affiliated in any way with the 3rd party TeraCopy program developers. ALSO NOTE - I myself have only tested TeraCopy Cure at this point, on Windows 7 (32 bit), and only with the free version of TeraCopy 2.27. This program, TeraCopy Cur
-
You can make a program or solution that copies all files of a certain extension, example > .rar (only rar), and copies them to a directory too simple I solved 🙂
-
Hello, I'm hoping to create a way of copying and renaming a specific file off of a company Sharepoint site. For local files I've always used the method of using FileExists( "path") then FileCopy ( "source", "dest" [, flag = 0] ) #include <WinAPIFiles.au3> Copy_File() Func Copy_File() local $source = "C:\Users\auser\Documents\test.xls" Local $dest = "C:\Users\auser\Documents\test" Local $iFileExists = FileExists($source) If $iFileExists Then FileCopy($source,$dest);copy file to new location MsgBox($MB_SYSTEMMODAL, "", &q
-
I have a server running Small Busines Server 2008. On that server is a shared directory containing Microsoft Office templates in the normal directory setup; a bunch of templates, a Smart Art subdirectory, and a Document Themes subdirectory containing Theme Colors, Theme Effects, and Theme Fonts subdirectories. My task is to create a program that copies all that to the local user's templates subdirectory. It must work on the local network or over the VPN. I am not allowed to wipe the local template directory. I may not assume that any drives are mapped, I have to use UNC paths to the server.