How many files can I put in a directory?

后端 未结 21 1897
北恋
北恋 2020-11-22 05:15

Does it matter how many files I keep in a single directory? If so, how many files in a directory is too many, and what are the impacts of having too many files? (This is on

21条回答
  •  隐瞒了意图╮
    2020-11-22 05:34

    I'm working on a similar problem right now. We have a hierarchichal directory structure and use image ids as filenames. For example, an image with id=1234567 is placed in

    ..../45/67/1234567_<...>.jpg
    

    using last 4 digits to determine where the file goes.

    With a few thousand images, you could use a one-level hierarchy. Our sysadmin suggested no more than couple of thousand files in any given directory (ext3) for efficiency / backup / whatever other reasons he had in mind.

提交回复
热议问题