-
Notifications
You must be signed in to change notification settings - Fork 23
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
Copy directory recursively #27
Comments
how does it deal with symlinks? |
I did not care about symbolic links, but it would be a good, how should I deal with them? copy or not the symbolic link content? |
I'm not following why it needs a new package. The non-surprising default behavior is to copy the link, not the file. |
I tested here, the current behavior is to receive an error when there are symbolic links, since it is searching for the actual file, and getting in the way of creating pathname. I do not know very well how to do just to copy the symbolic link, if you have any idea, it would be a help to advance, but I will search here anyway. |
There's no portable interface for handling symlinks. |
Okay, so I'll just |
I implemented a function using some of the functions of cl-fad, the function is called copy-directory-recursive, as the name says, it recursively copies a directory, I missed a function like that in cl-fad, it's here:
I also have the test for her. But I will not extend too much here. If you want to add it, tell me how to proceed to integrate it into cl-fad, which I will refactor it and do whatever has to be done.
The text was updated successfully, but these errors were encountered: