DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17625>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17625 COPY task on Win NT across Network drive fails ------- Additional Comments From [EMAIL PROTECTED] 2003-03-06 18:28 ------- I originally thought that it might be timestamp related, but I made a build file with this in it: <?xml version="1.0" encoding="UTF-8"?> <project basedir="." default="copy_test" name="Copy Test"> <target name="copy_test"> <echo message="start"/> <copy file="test1.html" todir="R:/TestFolder"/> <echo message="end"/> </target> </project> R is a mapped drive. No file exists called test1.html in the TestFolder directory, so I don't think timestamps would come into play. I run the above and it displays the name of the target with no indication that the copy did anything, but the echo did print "start" and "end". Is there a flag to cause ant to print out any kind of debugging information? If I could just see where this is happening, I could maybe track it down better.