File too large for destination???

Permabanned
Joined
15 Nov 2008
Posts
6,968
Hi wonder if anyone can help
Im trying to move a file from main HDD to external HDD, the file is 7.73gig (video file(s) contained in a rar file) I have over 200gig of space on external drive, but I keep getting the message it cant move it beacuse its too big? anyone know why? or anyway around this?
cheers
 
Depending on what kind of storage it is you may be able to convert it with a simple command line to NTFS without loss of data.
I
 
yep thats it, damn it
oh well, thanks for enlightening me
now i have to choose whether to keep it or bin it, lol

:confused: Err, not really...

Why not just .rar the file up into 2 or more parts so that each file will fit into the FAT32 limit? You can set the compression to absolute minimum so that it will complete in seconds.
 
CONVERT volume: /FS:NTFS /x

Code:
H:\>convert /?
Converts FAT volumes to NTFS.

CONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]

  volume      Specifies the drive letter (followed by a colon),
              mount point, or volume name.
  /FS:NTFS    Specifies that the volume is to be converted to NTFS.
  /V          Specifies that Convert should be run in verbose mode.
  /CvtArea:filename
              Specifies a contiguous file in the root directory to be
              the place holder for NTFS system files.
  /NoSecurity Specifies the converted files and directories security
              settings to be accessible by everyone.
  /X          Forces the volume to dismount first if necessary.
              All opened handles to the volume would then be invalid.
 
Back
Top Bottom