Conversation
Notices
-
matoken (matoken@gnusocial.matoken.org)'s status on Thursday, 20-Feb-2020 23:36:06 JST matoken FAT32領域でのディレクトリ内ファイル数制限確認
ファイル名長により変化する
短いファイル名長で沢山ファイルを作ると65535個まで
$ n=1;while :;do if ! touch ${n};then echo ${n} ;break;fi ;n=$(( n + 1 ));done
$ ls -1A|wc -l
65533
$ ls -1a|wc -l
65535
$ n=1;while :;do if ! touch `printf %0255d ${n}`;then echo ${n} ;break;fi ;n=$(( n + 1 ));done
255文字のファイル名長だと3123個まで
$ n=1;while :;do if ! touch `printf %0255d ${n}`;then echo ${n} ;break;fi ;n=$(( n + 1 ));done
$ ls -lA|wc -l
3121
$ ls -la|wc -l
3123-
matoken (matoken@gnusocial.matoken.org)'s status on Friday, 21-Feb-2020 00:15:38 JST matoken https://wiki.matoken.org/linux/filesystem#fat32%E3%81%AE%E3%83%87%E3%82%A3%E3%83%AC%E3%82%AF%E3%83%88%E3%83%AA%E5%86%85%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E6%95%B0%E5%88%B6%E9%99%90%E3%82%92%E7%A2%BA%E8%AA%8D%E3%81%99%E3%82%8B
-