Will

Results 2 comments of Will

我看了下 LemonUninstaller 里面 LMLocalAppListManager 类 getAppsByEnumDir 这个方法,初始化如下 ```Object-C scanPaths = @[@"/Applications", [@"~/Applications" stringByExpandingTildeInPath], [@"~/Downloads" stringByExpandingTildeInPath], [@"~/Desktop" stringByExpandingTildeInPath], [@"~/Documents" stringByExpandingTildeInPath]]; ``` 没有 `~/Library/Application Support`, 想加就自己加呗,但是这里有麻烦的地方,他这个扫描方法的扫描深度是 0,在 Applications 里面最多一层或者两层就能找到.app ,但是在 Support 里面就不好说了,会扫描很多很多地方,这个后续应该会考虑加一些特定...