-----Original Message-----
From: blazingwolf7 [mailto:[email protected]]
Sent: Monday, December 22, 2008 10:12 AM
To: [email protected]
Subject: Re: AW: Copying Folder
/*
Not really...I just want to copy the files from the root directory
But the root directory will have folders as well. Now the problem I faced is
how to filter out all the folders so that it only copy the files from the
root directory
*/
after reading again, i believe you mean =
a given folderstructure like that =
c:\test>tree /F /A
C:.
| foo.txt
| foobar.txt
| foobaz.txt
|
+---sub
| \---subsub
| sub.txt
|
\---sub1
\---subsub
sub1.txt
...
and you want to copy only the files on rootlevel
foo.txt
foobar.txt
foobaz.txt
right ??
to achieve that, just use the *.* include pattern
to catch only the files on roolevel =
<project default="copy">
<target name="copy">
<copy todir="C:/flatten">
<fileset dir="C:/test" includes="*.*" />
</copy>
</target>
</project>
Regards, Gilbert
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]