search for: symlink_fil

Displaying 1 result from an estimated 1 matches for "symlink_fil".

Did you mean: symlink_file
2015 Aug 18
3
Supporting symbolic links in Path library routines
include/llvm/Support/FileSystem.h has file_type which enumerates the file system’s view of the file type. One of the values is “symlink_file”. But because the Unix implementation of status() calls stat() instead of lstat(), if the path refers to a symbolic link, the link is followed. There’s no way to get information about the symbolic link itself. I think changing status() to call lstat() is a bad idea, so it seems like the only ot...