如何检查Java中是否存在带通配符的文件?

栏目: Java · 发布时间: 5年前

内容简介:如何根据id和File目录检查文件是否存在?翻译自:https://stackoverflow.com/questions/8752034/how-to-check-a-file-if-exists-with-wildcard-in-java

如何根据id和File目录检查文件是否存在?

FileFilter (此处编码为 anonymously )传递到dir File listFiles()

方法,如下所示:

File dir = new File("some/path/to/dir");
final String id = "XXX"; // needs to be final so the anonymous class can use it
File[] matchingFiles = dir.listFiles(new FileFilter() {
    public boolean accept(File pathname) {
        return pathname.getName().equals("a_id_" + id + ".zip");
    }
});

捆绑为方法,它看起来像:

public static File[] findFilesForId(File dir, final String id) {
    return dir.listFiles(new FileFilter() {
        public boolean accept(File pathname) {
            return pathname.getName().equals("a_id_" + id + ".zip");
        }
    });
}

你可以称之为:

File[] matchingFiles = findFilesForId(new File("some/path/to/dir"), "XXX");

或者只是检查是否存在,

boolean exists = findFilesForId(new File("some/path/to/dir"), "XXX").length > 0

翻译自:https://stackoverflow.com/questions/8752034/how-to-check-a-file-if-exists-with-wildcard-in-java


以上所述就是小编给大家介绍的《如何检查Java中是否存在带通配符的文件?》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

The Shallows

The Shallows

Nicholas Carr / W. W. Norton & Company / 2010-6-15 / USD 26.95

"Is Google making us stupid?" When Nicholas Carr posed that question, in a celebrated Atlantic Monthly cover story, he tapped into a well of anxiety about how the Internet is changing us. He also crys......一起来看看 《The Shallows》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

MD5 加密
MD5 加密

MD5 加密工具