-
Notifications
You must be signed in to change notification settings - Fork 48
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
Documentation for doesFileExist
lies
#142
Comments
For historical reasons, symbolic links are transparent to all the Will add a note to clarify this in the docs and update the tests. Long-term, there is need for a cleaner API around file metadata attributes: #143 |
Thanks for the fix. I realized that my test setup was flawed:
The answer of
I would have expected that this creates inside So, apologies for the false attribution. And thanks for the clarification in the docs and the testcase! |
Symbolic links are in fact just a "file with a string in it". The string is not interpreted when it is created, but only when the link is read. To create the link you intended, there's a couple different ways, depending on what kind of link you want: # Create a RELATIVE link
ln -s ../../dir/a/file dir/b/file
ln -s -r dir/a/file dir/b/file # GNU-only (Linux-like OSes)
# Create an ABSOLUTE LINK
ln -s "$PWD/dir/a/file" dir/b/file # Doesn't dereference symlinks in source
ln -s "$(realpath dir/a/file)" dir/b/file # Dereferences symlinks in source |
I think this is what I expected to be default for the "relative" case... |
directory/System/Directory.hs
Lines 1271 to 1279 in b33c108
This is wrong for symlinks, which are not directories, but still get
False
.Relying on the documentation leads to this bug sequence:
More true would be "not a directory and not a symlink". However, I don't know whether this is the whole story yet. The semantics of
doesFileExist
should be secured by a testsuite.The text was updated successfully, but these errors were encountered: