Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个应用程序,我必须从该应用程序访问我的SD 卡 内存。在那我应该怎么做才能隐藏所有空文件夹?
所以很容易更快地获取相关数据。
File [] files=f.listFiles(); if(!files[i].length==0 && !files[i].isHidden()) { //perform your operation here }
使用这种方式,您可以忽略隐藏文件夹和空文件夹。