In the javadocs for copyFrom() it says: "Copies another file, and all its
descendents, to this file..."
This "another file"- the srcFile argument- should then be copied correct?
$ ls /cygdrive/c/in/
New Text Document.txt
$ ls /cygdrive/c/out/
Code:
//...
FileObject destFile = manager.resolveFile("C:\\out");
FileObject srcFile = manager.resolveFile("C:\\in");
destFile.copyFrom(srcFile,Selectors.SELECT_ALL);
$ java Bs
$ ls /cygdrive/c/out/
New Text Document.txt
As you can see, in is not a subdirectory of out. Are the docs wrong, or is
this a bug?
Thanks.
_________________________________________________________________
Gear up for Halo® 3 with free downloads and an exclusive offer.
http://gethalo3gear.com?ocid=SeptemberWLHalo3_MSNHMTxt_1
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]