copying large file

B

branigan

I need to copy a large file 8gig. Actually a vmware instance. Could
anyone tell me if xcopy can do this? thx.
 
F

foxidrive

I need to copy a large file 8gig. Actually a vmware instance. Could
anyone tell me if xcopy can do this? thx.

It can, but only to an NTFS formatted drive.
 
V

VideoReDo Sucks

branigan said:
I need to copy a large file 8gig. Actually a vmware instance. Could
anyone tell me if xcopy can do this? thx.

Yes Xcopy can do this ... so can ANY variant of Copy, including drag 'n'
drop or Copy and Paste as long as the destination supports files of this
size. In the case of a single 8GB file, I'm not sure there is an advantage
to using Xcopy over any other method.
 
B

branigan

yea, over looked file system, it was formatted using fat32. So I ran
the convert on it and moved to NTFS. thx for the false alarm...

Bran
 
H

Herb Martin

VideoReDo Sucks said:
Yes Xcopy can do this ... so can ANY variant of Copy, including drag 'n'
drop or Copy and Paste as long as the destination supports files of this
size. In the case of a single 8GB file, I'm not sure there is an advantage
to using Xcopy over any other method.

Yes, xcopy has many advantages (due to switches)
but the most relevant are likely:

/v - verify
/c - continue on error (if copying more than one file)
/o - ownership and permission ACLs
/x - like /o but includes auditing ACLs too

And for big files across net the most important may be (ta-da):

/z - network restartable mode

Xcopy /? is worth checking from time to time because this
old program has received new capabilities in recent years
that may surprise even command line commandos. <Grin>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top