FileSystem copyTo:

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

FileSystem copyTo:

Stephane Ducasse-3
I have two folders:

a/
and
d/

and I want to copy file c in a but keeping its path.
i.e.
a/b/c copyTo: d
and I want to get

a/b/c and d/b/c

It looks like I have to do all the logic to create intermediary
folders (b) under d/
:(

Stef