Re: Question regarding recursive copy

2006-08-15 Thread Michael Bauroth
Strange ... works now !!! :) Don't know what it was. Thanx all of you. Regards Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Question regarding recursive copy

2006-08-15 Thread Dominique Devienne
it copies the direct subfolders of src, but the content of the subsubfolders will be flattened. I doubt it. preserves the file hierarchy, unless an explicit is used. --DD PS: Your ** pattern is fine, although I prefer to use **/* myself. **/*.* will only copy files with an extension, an

RE: Question regarding recursive copy

2006-08-15 Thread Rebhan, Gilbert
Hi, just use instead. **/*.* means all files in root and all subdirectories *.* mean all files in root only. See also Ant manual = Concepts and Types / Directory-based Tasks Regards, Gilbert -Original Message- From: Michael Bauroth [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: Question regarding recursive copy

2006-08-15 Thread David Corley \(AT/LMI\)
You should probably use "**/*.*" as the pattern. -Original Message- From: Michael Bauroth [mailto:[EMAIL PROTECTED] Sent: 15 August 2006 14:27 To: user@ant.apache.org Subject: Question regarding recursive copy Hi, I'm having the following problem: I want to make a recursive copy from