Seum wrote:
I have a folder with about 35GB of data and, after I started
moving file after file, from one column F: to another N:, it seemed
very slow and tedious. I could not select all the files, not even 2
together, and I thought about renaming the two folders.
I renamed N with O, but it ended up with (O
(N
.
Any safe and quick way to do this?
TIA
Robocopy, running in file synchronization mode (mirroring).
I use this, to copy one partition to another, with the intent to
preserve every aspect of the file system.
robocopy J:\ E:\ /mir /copy:datso /dcopy:t /r:3 /w:2 /zb /np /tee /v
/log:robocopy_j_to_e3.log
You run that from command prompt, being *very careful* to check
syntax. Why ? Because in that example, E: will be erased, before
J: is transferred. What robocopy will be doing, is trying to mirror
the contents of J:, onto E:. If E: had "extra files" on it, then
it would no longer be a mirror. Robocopy also has other operating
modes besides mirror, but mirror is what I use for the things I do.
By typing the wrong drive letter by accident, I've had the contents
of E: start to be erased, before I could stop the command. I lost
a gigabyte of files, by making a typing mistake.
As far as I know, version XP026 comes with this download. This would be
the minimum version I would consider using. I think version XP027 may
come with Windows 7.
http://technet.microsoft.com/en-us/magazine/2006.11.utilityspotlight.aspx
You can find more info on the various versions, here.
http://en.wikipedia.org/wiki/Robocopy
That is supposed to be a folder copying tool, but seems to work at the
partition level. You could also use it like this:
robocopy J:\some_folder E:\some_other_folder ...
to copy just the "some_folder".
I've never used the GUI for it, and I don't know if the
GUI helps at all, or not. I've basically been using the same
command parameters, for a long time, without changing them. I
just change the drive letters, when copying an entire drive
from one place to another.
Be careful!
Paul