Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
4k views

Copy Files w/o Overwrite

I just can't seem to find a way on the command line to say "copy all the files from directory A to directory B, but if the file already exists in directory B, don't overwrite it, no matter which file ...
7
votes
7answers
15k views

How to copy a directory structure but only include certain files (using windows batch files)

As the title says, how can I recursively copy a directory structure but only include some files. E.g given the following directory structure: folder1 folder2 folder3 data.zip ...
6
votes
3answers
3k views

How to copy files from folder tree dropping all the folders with Robocopy?

I have the following folder structure: FolderA --Folder1 --Folder2 --Folder3 ... --Folder99 Folders 1 through 99 have files in them. All I want to do is to copy ALL THE FILES into ONE FOLDER, ...
4
votes
2answers
404 views

Vbscript - Creating a script that mirrors several sets of folders

Ok, this is my problem. I'm doing a logonscript that basically copies Microsoft Word templates from a serverpath on to a local path of each computer. This is done using a check for group membership. ...
3
votes
1answer
491 views

What's the algorithm behind Robocopy?

I am curious to know what makes Robocopy (Robust File Copy) so fast and robust. Any body knows what is the API/Algo used for Robocopy? Anybody studied Robocopy? I am asking since I have to write a ...
3
votes
2answers
2k views

How can I make robocopy silent in the command line except for progress?

I'm using robocopy to do backups with a PowerShell script, and it's pretty awesome, except that I'd like it to only show the progress percentage while it copies and not all of the other information. ...
3
votes
4answers
763 views

Work with Subversion from USB Key

I am taking some work home with me these days and I transport it on a USB key because my work is on a private intranet. I am using Visual Studio 2008 and I find that the performance of builds is ...
3
votes
2answers
2k views

Are there any API wrapper of Robocopy?

Robocopy is the best reliable and feature rich way to batch copy files on Windows. However, it is a command line tool. I am looking for a library/API that I could do the same in my program. I tried ...
2
votes
3answers
101 views

.Net library to move / copy a file while preserving timestamps

Does anyone know of a .Net library where a file can be copied / pasted or moved without changing any of the timestamps. The functionality I am looking for is contained in a program called ...
2
votes
2answers
97 views

Which tool/plug-in can be used to copy files from remote location in least possible time?

My need is to copy some of the zipped files from remote location to my machine and then unzip it in specific location. By which way it can be achieved in fastest way? Are there any open source tool ...
2
votes
2answers
230 views

Powershell bug where external commands silently fail

I have a complex powershell script that uses remoting and does a lot of file copying and loading and unloading of powershell modules. Within the script I use robocopy to move only changes files and ...
2
votes
2answers
755 views

Using robocopy with Visual Studio 2010 Post-build and Pre-build events

Robocopy outputs 1 upon success, unlike most programs that exit with 0 on success. Visual Studio (and MSBUILD) interprets exit code of 1 as an error. How can Robocopy be used in Visual Studio post- ...
2
votes
8answers
1k views

Using Robocopy to deploy sites

I want to be able to quickly deploy updates to a site that is fairly busy. For smaller sites I would just FTP the new files over the old ones. This one, however, has a few large dll's that regularly ...
2
votes
1answer
1k views

Robocopy for Windows 2003 doesn't support /DST option

Does anyone know if it is possible to download the latest robocopy for Windows 2003. The latest version provides the /DST option which ignores time stamps changed due to BST (British Summer Time). ...
1
vote
1answer
31 views

robocopy extra files move to another folder

I am trying to write a batch to copy all files (those in subfolders too) from directory1 to directory2 and then moving any extra files (or directories if possible) found in directory2 to directory3. ...
1
vote
1answer
115 views

ROBOCOPY - Copy folders content to a single folder

Here is some code I made :) @echo off set source="R:\Contracts\" set destination="R:\Contracts\Sites\" ROBOCOPY %source% %destination% *.srt *.pdf *.mp4 *.jpg /COPYALL /R:0 /S for /r %source in (*) ...
1
vote
0answers
33 views

robocopy keep smaller file

Is there a way to have robocopy copy files from one directory into another overwriting files with the same name so that the destination directory will contain the smaller file. so for example dirA ...
1
vote
1answer
198 views

Copying a mix of files and directories with Robocopy [closed]

If I copy files with robocopy and specify a directory name, robocopy seems to treat the directory as a file. I have a bat file with a mix of files and directories specified. set ...
1
vote
1answer
136 views

After Robocopy -Directory/Files not show on External Drive

I've been happily using robocopy for backing up my computers to an external usb drive. It's great since it only copies the files that were changed/updated/new. I can take my external drive to any ...
1
vote
0answers
608 views

Using Robocopy to exclude a file extension from the root directory

I have a directory that I want to copy to another directory using Robocopy.exe. My plan is to exclude a few files from the root of the source directory. In fact, I'd like to ONLY exclude .html files ...
1
vote
0answers
183 views

Robocopy seems slower than Windows copy! [closed]

I am finding that Robocopy performs slower than Windows copy for the case where there is a very large number of files. I have turned off all the excessive logging using (/np /nc /nfl /ndl) flags and ...
1
vote
1answer
147 views

CruiseControl.net spaces in <cb:define> field splitting path

I'm using the field to define a path within CC.NET, but the path has spaces in it. I use the definition within a robocopy task. However when I run the robocopy command in cruisecontrol.net, the path ...
1
vote
1answer
239 views

Windows cmd: Copy over entire directory *including* parent directory. Solution without specifying same parent directory name

In Windows, how do you copy an entire directory, INCLUDING the parent directory folder? For instance, let's say we have the directory c:\Folder and want to copy it over to d: . The only way right ...
1
vote
4answers
347 views

Robocopy (or xcopy) read from file?

so I have a few excel sheets that contain directories all stemming from a single root directory. Is there anyway to have robocopy (or similar program) read the excel sheet as input to only copy over ...
1
vote
3answers
848 views

Robocopy File Transfer Backup using SQL Server

I have a job running robocopy to copy files from the SQL server to a backup drive. The job runs a CmdExec type job to call a batch file that runs robocopy. my issue is although the files copy over ...
1
vote
2answers
2k views

Robocopy - Compare modified dates of files?

I've been trying to create this script that basically mirrors two sets of folders and it's content (including subfolders), but only copy files that are newer than the ones that already exist. I tried ...
1
vote
1answer
217 views

Does xcopy pause untill copying is complete?

For an C# console app like this is it better to use xcopy or robocopy? Also, Does xcopy pause until copying is complete? // copy web project to temp Process proc = new Process(); ...
1
vote
1answer
929 views

Robocopy error code 6 ''The handle is invalid'

I have written a python script that uses subprocess to call robocopy to sync log files from a remote host. Like so: program = 'Robocopy' options = ['/S'] args.append(program) args.append(options) ...
1
vote
1answer
146 views

How can I get Sandcastle to play nice with SVN?

I'm trying to add the output of a Sandcastle compilation into source control, but Sandcastle has issues trying to output directly into a subversion-controlled directory structure. So, what I was ...
1
vote
1answer
2k views

How do I run robocopy without copying extended attribute information?

Greetings, I've got a bat script which copies certain information from a computer onto a USB hard drive using Robocopy. The hard drive is FAT formatted and therefore doesn't support directories with ...
1
vote
3answers
1k views

robocopy, jungledisk file copy problems

I'm a huge fan of robocopy and use it extensively to copy between various servers I need to update. Lately I've been archiving to an Amazon S3 account that I access via a mapped drive using ...
0
votes
1answer
30 views

Skip files if they exsist and/or if they are the same size

I have this code, thanks to this forum: @echo on set source="R:\Contracts\" set destination="R:\Contracts\Sites" ::Not sure if this is needed ::It guarantees you have a canonical path (standard ...
0
votes
1answer
31 views

Windows: Find specified filetypes and copy them to a Specified Directory

Imagine the following situation: You have a computer with lots of files on it. You need to have specific filetypes, but these could be anywhere on the PC, since there are multiple partitions. Now I ...
0
votes
1answer
33 views

converting xcopy to robocopy

Tried to use xcopy and excluding a folder and all its subfolders. C:\Merged\org\a>xcopy /I /E /Y C:\Merged\org\*.* C:\Merged\dest /exclude:"C:\Mer ged\org\a\*.*" Can't read file: ...
0
votes
0answers
25 views

Which file does robocopy copy first? [migrated]

In my C# application, I am using robocopy for with option /s for copying sub folders also. Suppose I have files & folders from the last month. Which file will it copy first, the latest one or ...
0
votes
0answers
21 views

Robocopy in .NET (Build.xml)

What is the proper way to write code in Build.xml file to use Robocopy? Is there anything like a common syntax to use?
0
votes
1answer
47 views

Powershell Error Trap for Get-ChildItem -Filter and Robocopy (ErrorAction)

I'm drafting a powershell script to manually backup some DC's. The backups need to be moved from one folder to another and I am using Get-ChildItem -Filter "Backup*" to select the backup files, then ...
0
votes
1answer
84 views

DOS Commands- Excluding files in a folder, using Robocopy

I have a folder containing many other sub-folders. I am trying to write a batch file which will copy some of the folders to another place on my hard disk. I am using xcopy for this. The folder ...
0
votes
0answers
29 views

Robocopy on network as part of a pipeline [closed]

I have the following pipeline: [other vendor] sends files to my Windows filesystem, which are indexed starting with the next unused number (normally file.001) I move the files with RoboCopy to my ...
0
votes
1answer
64 views

Verify copied data between Windows & Linux shares?

I just copied a ton of data from a machine running Windows 7 Ultimate to a server running Ubuntu Server LTS 10.04. I used the robocopy utility via PowerShell to accommplish this task, but I couldn't ...
0
votes
2answers
38 views

How can I recursivly copy a directory structure and only copy the files in the bottom tier (Windows Batch)

My directory structure looks like this; folder1 folder2 (thousands of folders like this) folder3 someImage.jpeg someDoc.doc folder4 (optional folder) ...
0
votes
0answers
23 views

Copy with sharing setting carried

robocopy can use a /copyall or /sec switch to carry NTFS security permission while copying, but I looked around and aware there's no feature for robocopy to carry sharing permission. Is there any ...
0
votes
1answer
45 views

How to exclude .svn folders with robocopy

does anyone know how to exclude .svn folders with Robocopy? I want to copy all folders but I want to prevent to copy the subversion folders that svn creates. Any ideas on this? Thanks in advance.
0
votes
1answer
24 views

Mirroring folder on the same file server reduces the modified date by 1 hour

I am facing this weird issue in which when I mirror a folder on same file Server then in the destination folder for all the sub folders modified date is one hour earlier to what was there in source ...
0
votes
1answer
56 views

Running a ps1 script file from c# program

I want to run a ps1 script file from my c# code which in turn runs a batch file which is executing a robocopy command. While trying to run the script it throws an error "Cannot bind argument to ...
0
votes
1answer
83 views

windows server Best way to copy between remote server

I want to start a copy operation between two remote windows servers from local command line. I do not want to run this application on the servers since some authentication issues, and since both ...
0
votes
2answers
133 views

How to sync many small files between two far away sites with limited slow network? Can I use git to accelerate this work?

How to sync many small files between two far away sites with limited slow network, and site B have old copy of site A. Can I use git to accelerate this work? Usually I like use winrar to add site A ...
0
votes
1answer
59 views

Robocopy is there a way to? [closed]

Is there a way to use Robocopy to list all files hidden included on a server to a txt/log file like the command (DIR /B /S /AH /AR /AS >c:\all.txt) and then copy e.g .mp3:.jpg:*.avi etc. to a ...
0
votes
0answers
25 views

Can robocopy copy files and make them writeable as it does so?

I tried robocopy c:\source c:\target /MIR /XJ /R:0 /W:0 /COPY:DT where /MIR is mirror (duplicate directories and files, remove files in target not in source), /XJ is copy junction points, /R:0 /W:0 is ...
0
votes
0answers
27 views

Can I ignore one folder and still use /MIR switch with Robocopy?

I am using robocopy to deploy from our build server. I have been using /MIR and it has worked well. The problem I face now is having the same behavior except one folder will have files manually ...

1 2