Speeding up file system access?

前端 未结 5 2142
盖世英雄少女心
盖世英雄少女心 2021-02-14 08:38

My app scans part of a file system, and my users reported it was very slow when they were scanning a network drive. Testing my code, I identified the bottleneck: the methods

5条回答
  •  臣服心动
    2021-02-14 09:04

    I faced exactly the same problem

    The solution for our case was quite simple: since our directory structure was following a standard (there where no directory which had the '.' character in it's name), I just followed the standard, and applied a very simple heuristic: "in our case, directories doesn't have the '.' character in it's name". This simple heuristic reduced drastically the number of times our application had to call the isDirectory() function of the java.io.File class.

    Maybe this is your case. Maybe on your directory structure you could know if a File is a directory just by it's naming conventions.

提交回复
热议问题