In Ant, how do I specify files with comma in filename?
问题 Here is an example-target that I tried. Turns out, it wants to delete everything because the comma separates " * */*" and "cover" -- understandable. <target name="clean"> <delete verbose="true"> <fileset dir="." includes="**/*.pyo"></fileset> <fileset dir="." includes="**/*,cover"></fileset> </delete> </target> How do I specify an embedded comma? I'm trying to learn Ant so I won't have to maintain different build-systems for different operating-systems. In this case, it's in a Python