0

I want copy image file with large size(4G) to flash memory in Windows XP os and capacity of flash memory is 8G and free, but windows shows error dialog : "The disk in the destination drive is full".

David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490
Sam
  • 6,770
  • 7
  • 50
  • 91

1 Answers1

1

The FAT32 file system supports drives larger than 4GB, but individual files cannot be larger than 4GB-1 (4294967295) bytes. If you must store such large files you will need to use a different file system. The most commonly used file system which supports such large files is NTFS.

BitBank
  • 8,500
  • 3
  • 28
  • 46