1.

How To Copy Files Without Extention?

Answer»

If files are in the DIRECTORY:

<INCLUDE name="a,B,C"/>

If files are in the directory or subdirectories:

<include name="**/a,**/b,**/c"/>

If you want all files WITHOUT extension are in the directory or subdirectories:

<exclude name="**/*.*"/> 

If files are in the directory:

<include name="a,b,c"/>

If files are in the directory or subdirectories:

<include name="**/a,**/b,**/c"/>

If you want all files without extension are in the directory or subdirectories:

<exclude name="**/*.*"/> 



Discussion

No Comment Found