We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
.withFileFilter(new String[]{".bin"}) 实际文件为demo.Bin就不显示,大小写不识别。 改为.withFileFilter(new String[]{".bin",".Bin",".bIn",".biN",".BIn",".bIN",".BiN",".BIN"}) 也不能识别,不知道什么原因。
The text was updated successfully, but these errors were encountered:
在LFileFilter类,代码是这样比较的 if (file.getName().endsWith(mTypes[i].toLowerCase()) || file.getName().endsWith(mTypes[i].toUpperCase())) 自己重写个过滤比较的判断吧,另外要注意设置是否过滤了文件大小,小于设定的值文件就不会展示
Sorry, something went wrong.
No branches or pull requests
.withFileFilter(new String[]{".bin"})
实际文件为demo.Bin就不显示,大小写不识别。
改为.withFileFilter(new String[]{".bin",".Bin",".bIn",".biN",".BIn",".bIN",".BiN",".BIN"})
也不能识别,不知道什么原因。
The text was updated successfully, but these errors were encountered: