vote up 2 vote down star
1

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 to use Process.Start(), but then I have to capture and to parse stdout for progress bar and no way to the overwrite behavior.

For example, exclude file base on delegate function; rename file if it is older; (re)start copy based on some events.

I guess copy, xcopy, recursive copy and etc, should be the most frequency wheel programmers do reinvent. Are there any API/library I missed?

flag

76% accept rate

3 Answers

vote up 1 vote down

There seems to be some stuff out there which puts a GUI on it, e.g. Synchronizing Images and Files in Windows Vista and XP Using Microsoft SyncToy (forum here) and Utility Spotlight - Robocopy GUI. I haven't found an API as yet, nor whether Robocopy exposes ActiveX-style control.

Edit: The rather large online description of Robocopy says something about

Robocopy 'Jobs' and the 'MOnitor source' option provide an alternative to setting up a Scheduled Task to run a batchfile with a RoboCopy command.

Might help. Might not.

link|flag
vote up -2 vote down

I think it would be faster to write your own with a GUI. It's not rocket science. Everybody keeps reinventing the wheel all the time. It's because the wheel is the simplest machine in the world.

Rocket engines are something you don't want to reinvent.

It's probably harder to write a GUI that sits on top of robocopy. Robocopy is made for command line and batch use, not for GUI use.

link|flag
I am not going to write my GUI. The case is: I want a deep recursive copy, I want less fighting with hard/symbolic links, security, file system limitation(charset.. etc), overwrite prompt, network. I want a copy, and let me (not the user) decide "what if it fail/overwrite", an effective wheel. – Dennis Cheung Dec 26 '08 at 16:39
vote up 0 vote down check

Thanks for your answers, and after some more research, I believe the API does not exist.

The maximum degree of reusing the feature from Robocopy is fork a child process with command line arguments.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.