gpt4 book ai didi

java - 我想在java中查找文件是否存在

转载 作者:行者123 更新时间:2023-12-01 19:38:29 25 4
gpt4 key购买 nike

我想在java中查找文件是否存在文件名可以abc_*_*.xml (其中*代表任意字符或数字)

temp = File.createTempFile(startfilename + "_" + "" + ".xml");
boolean exists = temp.exists();

如何检查文件名的各种组合,其中只有文件名的开头相似,而 _ 之后的其余文件名不同

最佳答案

使用文件 API

if(!Files.exists(Paths.get("yourpathhere"))){
/*you code here*/
}

然后您可以在任何需要的周期中使用它

就像您想迭代目录中的项目一样,请使用 Files.newDirectoryStream。

filter example here(stackoverflow)

关于java - 我想在java中查找文件是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59190990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com