Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect Symbolic Links, Junction Points, Mount Points and Hard Links [duplicate]

does anyone know how to check if a file or directory is either a Symbolic Link, Junction Point, Mount Point or Hard Link?

As far as I know a symbolic links are detected by checking a file for its "ReparsePoint" attribute. Junction points are detected by checking a directory for the "ReparsePoint" attribute. So if the "ReparsePoint" attribute is set on a file it must be a symbolic link, otherwise if it's set on a directory it can only be a junction point...right?

Good so far, but I have still no idea how to detect "Mount Points" and "Hard Links". Can anyone tell me how to do this?

like image 912
Alexander Avatar asked Mar 21 '10 13:03

Alexander


2 Answers

Symbolic Links, Junction Points, and Mount Points are all examples of different reparse points. Hard Links, however, are just regular files. On NTFS all files are hard links. You can detect that a file has multiple hard links pointing to it, but there's no "real file" that it points to. You can think of hard links as just different names for the same file.

Here's some information on accessing reparse points from C#: http://www.codeproject.com/KB/vista/ReparsePointID.aspx?display=Print

Here's some information on how to do it in C: http://blog.kalmbach-software.de/2008/02/

like image 192
Gabe Avatar answered Oct 21 '22 04:10

Gabe


Hard links:

You can detect if multiple names are pointing to the same "data chunk" or "file content" by invoking the Win32 API function GetFileInformationByHandle. The nNumberOfLinks member of the returned BY_HANDLE_FILE_INFORMATION structure contains the total number of links

Mount Points:

You can iterate through all the mount points on a volume using FindFirstVolumeMountPoint and FindNextVolumeMountPoint. Also FindVolumeMountPointClose should be used to close the search handle.

From .NET

Doing this from .NET will require some P/Invoke magic

like image 45
Hannes de Jager Avatar answered Oct 21 '22 03:10

Hannes de Jager