在一个目录中保存多少文件有关系吗?如果是,一个目录中有多少文件是太多的,拥有太多文件的影响是什么?(这是在Linux服务器上。)
Background: I have a photo album website, and every image uploaded is renamed to an 8-hex-digit id (say, a58f375c.jpg). This is to avoid filename conflicts (if lots of "IMG0001.JPG" files are uploaded, for example). The original filename and any useful metadata is stored in a database. Right now, I have somewhere around 1500 files in the images directory. This makes listing the files in the directory (through FTP or SSH client) take a few seconds. But I can't see that it has any effect other than that. In particular, there doesn't seem to be any impact on how quickly an image file is served to the user.
我想过通过创建16个子目录来减少图像的数量:0-9和a-f。然后我将根据文件名的第一个十六进制数字将图像移动到子目录中。但是除了偶尔通过FTP/SSH列出目录之外,我不确定这样做是否有任何理由。
完美的,
完美的,
完美无瑕:
(g.m. - rip)
function ff () {
d=$1; f=$2;
p=$( echo $f |sed "s/$d.*//; s,\(.\),&/,g; s,/$,," );
echo $p/$f ;
}
ff _D_ 09748abcGHJ_D_my_tagged_doc.json
0/9/7/4/8/a/b/c/G/H/J/09748abcGHJ_D_my_tagged_doc.json
ff - gadsf12-my_car.json
g/a/d/s/f/1/2/gadsf12-my_car.json
还有这个
ff _D_ 0123456_D_my_tagged_doc.json
0/1/2/3/4/5/6/0123456_D_my_tagged_doc.json
ff .._D_ 0123456_D_my_tagged_doc.json
0/1/2/3/4/0123456_D_my_tagged_doc.json
享受吧!
FAT32:
最大文件数:268,173,300
每个目录的最大文件数:216 - 1 (65,535)
最大文件大小:2 GiB - 1无LFS, 4 GiB - 1有
NTFS:
最大文件数:232 - 1 (4,294,967,295)
最大文件大小
实现:244 - 26字节(16 TiB - 64 KiB)
理论:264 - 26字节(16 EiB - 64 KiB)
最大卷大小
实现:232 - 1个集群(256tib - 64kib)
理论:264 - 1个集群(1 YiB - 64 KiB)
ext2:
最大文件数:1018
每个目录的最大文件数:~1.3 × 1020(性能问题超过10,000)
最大文件大小
16gib(每块大小为1kib)
256gib(区块大小为2kib)
2 TiB(区块大小4 KiB)
2 TiB(块大小为8 KiB)
最大卷大小
4 TiB(区块大小为1kib)
8 TiB(区块大小为2 KiB)
16 TiB(区块大小为4 KiB)
32 TiB(块大小为8 KiB)
ext3:
最大文件数:min(volumeSize / 213, numberOfBlocks)
最大文件大小:与ext2相同
最大卷大小:与ext2相同
ext4:
最大文件数:232 - 1 (4,294,967,295)
每个目录的最大文件数:无限制
最大文件大小:244 - 1字节(16tib - 1)
最大卷大小:248 - 1字节(256tib - 1)