Reputation: 3468
I am in a doubt whether this is a right place for this question.. I want to know if windows 7 or xp has any limit on no. of files within particular folder?
Upvotes: 32
Views: 57552
Reputation: 19006
There's no practical limit on the combined sizes of all the files in a folder, though there may be limits on the number of files in a folder. More importantly, there are limits on individual file size that depend on what filesystem you're using on your hard disk. (The "filesystem" is nothing more than the specification of exactly how files are store on disk.)
Let's break this down by file system:
FAT, for File Allocation Table, is the successor to the original FAT12 filesystem that shipped with MS-DOS many, many years ago.
"There's no practical limit on the combined sizes of all the files in a folder, though there may be limits on the number of files in a folder."FAT32 was introduced to overcome some of the limitations of FAT16.
NTFS, or "New Technology File System" introduced with Windows NT, is a completely redesigned file system.
Note that when I say "disk" above, I'm really talking about "logical" disks, not necessarily physical. No one makes a 256 terabyte disk drive, but using NTFS you can treat an array of disk drives as a single logical disk. Presumably if you have enough of them, you can build a huge logical drive.
Also note that the NTFS's 256 terabyte limitation may well simply be an implementation restriction - I've read that the NTFS format can support disks up to 16 exabytes (16 times 1,152,921,504,606,846,976 bytes).
Sources:
Upvotes: 52
Reputation: 115
According to this source, there's not limit per folder. Well, the limit is the same number of files you can store in the volume (NTFS).
Edit: Microsoft link, as pointed in Serverfault.
Upvotes: 2