我想删除文件夹中特定类型的所有文件。但是,我只有文件夹的绝对路径。我能做些什么?
例如,我可能想删除 C:\example 中的 .txt 文件。
我想删除文件夹中特定类型的所有文件。但是,我只有文件夹的绝对路径。我能做些什么?
例如,我可能想删除 C:\example 中的 .txt 文件。
这应该这样做:
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="deletetxtfiles" name="Deletefiles">
<target name="deletetxtfiles">
<delete>
<fileset dir="C:/Example" includes="*.txt"/>
</delete>
</target>
</project>
它只删除 C:\Example 中的 txt 文件。文件夹、其他文件类型或子文件夹中的 txt 文件不会受到影响。