I tried to copy the entire contents of the directory to another location using
copy ("old_location/*.*","new_location/");
but it says it cannot find stream, true *.* is not found.
Any other way
Thanks Dave
|
I tried to copy the entire contents of the directory to another location using
but it says it cannot find stream, true Any other way Thanks Dave |
||||
|
It seems that copy only handle single files. Here is a function for copying recursively I found on the copy documentation page:
|
|||||||||
|
|
copy() only works with files. Both the DOS copy and Unix cp commands will copy recursively - so the quickest solution is just to shell out and use these. e.g.
Otherwise you'll need to use the e.g.
C. |
||||
|
|
|
The best solution is!
|
|||||
|
|
||||
|
|
|
Here is another approach that takes care of symlinks too:
|
|||
|
|
|
Like said elsewhere,
|
|||
|
from the last 4th line , make this
and
|
||||
|
|
|
My pruned version of @Kzoty answer. Thank you Kzoty. Usage
|
|||
|
|
|
Full thanks must go to Felix Kling for his excellent answer which I have gratefully used in my code. I offer a small enhancement of a boolean return value to report success or failure:
|
|||
|
"old_location/."was just a typo? – Felix Kling Jan 12 '10 at 17:26"old_location/*.*. I can't find a revision containing"old_location/.". – Asaph Jan 12 '10 at 17:29copy ("old_location/.","new_location/");– Felix Kling Jan 12 '10 at 17:34