-
Notifications
You must be signed in to change notification settings - Fork 773
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 to copy symlinks to target as normal folders #191
Labels
Milestone
Comments
Try setting fs.copy(src, dest, { dereference: true }, callback) Let me know if that works. I'm gonna leave this open, as that should be documented. |
Thank you, it's working 👍 |
Thx @jprichardson. Just being curious: why is this option not listed in the README? |
@jhnns it's because it doesn't exist in |
Sounds reasonable 👍 |
rjz
added a commit
to rjz/node-fs-extra
that referenced
this issue
Apr 15, 2016
jprichardson
added a commit
that referenced
this issue
Apr 15, 2016
Adds symlink dereference option to `fse.copySync` (#191)
Implemented in #235 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can I set the
-L
option like in the unix commandcp
?From the man page:
See also here at superuser
The text was updated successfully, but these errors were encountered: