Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

关于自定义缓存路径 #40

Open
KeqingLI opened this issue Mar 28, 2017 · 0 comments
Open

关于自定义缓存路径 #40

KeqingLI opened this issue Mar 28, 2017 · 0 comments

Comments

@KeqingLI
Copy link

private static boolean isCacheDirValid(File cacheDir) {
return cacheDir.isDirectory() && (cacheDir.exists() || cacheDir.mkdirs());
}

在实际使用时当目录未创建时 cacheDir.isDirectory() =false ,是否可以切换为
return cacheDir.isDirectory() && (cacheDir.exists() || cacheDir.mkdirs());

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant