-
Notifications
You must be signed in to change notification settings - Fork 833
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How ot move Directory to directory recurcive #117
Comments
@ychoucha moving in filesystems is renaming, so for local you can just rename the directory. |
How that ? I need to try |
For anyone coming to this late, the answer is to use:
The documents are not clear that this function can actually be used for directories as well as files. Any files within your directory will also be pulled across to the new location. Hope this helps :) |
Given thephpleague#117, at least since 2014 the docs were missing clearer information on whether it's possible to delete/rename/move directories as well as files.
Given #117, at least since 2014 the docs were missing clearer information on whether it's possible to delete/rename/move directories as well as files.
Hello,
how copie a full directory to another please ?
i have this
dir/underDir1
and i want this to the final 👍
anotherDir/dir/underdir1
and of course move all files on the final directory ?
a function like this 👍
moveDirectory($sourceDirectory,estinationDirectory);
what do u think please?
The text was updated successfully, but these errors were encountered: