The Computer Oracle

Windows 7 says a 8.6 GB file won't fit in 14.7 GB space?

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Horror Game Menu Looping

--

Chapters
00:00 Windows 7 Says A 8.6 Gb File Won'T Fit In 14.7 Gb Space?
00:23 Answer 1 Score 28
00:50 Accepted Answer Score 110
01:06 Answer 3 Score 22
01:38 Answer 4 Score 3
02:14 Thank you

--

Full question
https://superuser.com/questions/617211/w...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#windows7

#avk47



ACCEPTED ANSWER

Score 110


It's formatted as FAT32. The largest size file supported on FAT32 is 4GB. You will have to reformat the drive as NTFS or ExFAT.




ANSWER 2

Score 28


The issue is that the target filesystem is FAT32, which only supports files up to 4 GB in size. The error message is not very clear if you've never run into this issue before. You can fill the 14.6 GB space with multiple 4 GB files, but no single file may be larger than 4 GB. You'd need to reformat the disk as NTFS or exFAT to support larger files.




ANSWER 3

Score 22


In addition to David Marshall's answer, there's no need to reformat the drive. You can upgrade from FAT32 to NTFS with the convert command.

>convert /?
Converts a FAT volume 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 will be converted to NTFS.
  /V          Specifies that Convert will be run in verbose mode.
  /CvtArea:filename
              Specifies a contiguous file in the root directory
              that will be the place holder for NTFS system files.
  /NoSecurity Specifies that the security settings on the converted
              files and directories allow access by all users.
  /X          Forces the volume to dismount first if necessary.
              All open handles to the volume will not be valid.



ANSWER 4

Score 3


FAT-formatted drives can't see files larger than 4 GB; you'll have to reformat it as NTFS. You may have a directory that is 100 GB in size. However, no single file may be more than 4 GB.

The maximum possible size for a file on a FAT32 volume is 4 GB minus 1 byte (232−1 bytes). Video applications, large databases, and some other software easily exceed this limit. Larger files require another formatting type such as NTFS.

Ref.: Wikipedia article on FAT32.