-
Notifications
You must be signed in to change notification settings - Fork 154
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
Add find_symlink_node() to allow l* methods (lstat, lchown, etc) to use find_node like functionality #749
Comments
Can you give an example of why you would want to do this? |
Created this issue on behalf of @humphd, but I'm currently trying to implement lchown(). Though I'm trying to get the metadata for a symbolic link, currently the find_node() method will try to de-reference and get the metadata for a regular link. |
My preference is to add a new function Have a look at the code for |
Good idea. Morphed this to be about adding a new function for the non-dereferencing case. |
Currently the find_node() method in implementation.js will attempt to dereference to find the root node. It would be a good idea to have an option to not dereference for situations where you need to work on symlinks.
The text was updated successfully, but these errors were encountered: