Delete all files with an extension using Java

后端 未结 5 1363
自闭症患者
自闭症患者 2021-02-15 11:52

I\'m (relatively) new to Java and I\'m trying to implement a .jar that runs a list of commands that in Windows XP\'s command prompt it would be:

cd\\
cd myfolder         


        
5条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-15 12:37

    for (File f : folder.listFiles()) {
        if (f.getName().endsWith(".lck")) {
            f.delete(); // may fail mysteriously - returns boolean you may want to check
        }
    }
    

提交回复
热议问题