Delete all files with an extension using Java

后端 未结 5 1360
自闭症患者
自闭症患者 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:48

    Final Code which works :)

    File folder = new File(dir);
                    File fList[] = folder.listFiles();
    
                    for (File f : fList) {
                        if (f.getName().endsWith(".png")) {
                            f.delete(); 
                        }}
    

提交回复
热议问题