1

我想删除文件夹中特定类型的所有文件。但是,我只有文件夹的绝对路径。我能做些什么?

例如,我可能想删除 C:\example 中的 .txt 文件。

4

1 回答 1

0

这应该这样做:

<?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 文件不会受到影响。

于 2013-02-16T19:44:45.027 回答