The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
1k views

C# - How to retreive the target of a Junction or Symlink with a standard user

I am trying to get the target of a junction in my program, but the only way I managed do it is: Requesting Backup privileges p-invoke CreateFile with special parameters to get a handle to the ...
2
votes
1answer
1k views

NTFS Junctions, trouble understanding the API

Update: This question has evolved into a question about the NTFS filesystem filter driver how to use the Win32 API in backup applications and other programs that need to know what a file really is on ...
0
votes
2answers
797 views

Junctions or Virtual Directories for Web Applications?

I see that junctions are a common way of referencing shared code in many projects. However, I have not seen them used in web applications before. Our team is exploring the possibility of abandoning ...
16
votes
2answers
380 views

Detecting if a directory is a junction in Delphi

I've been Google searching this I may be having some brain clouds because it just isn't working. I need to detect if a folder is a junction so my recursive file search doesn't run off into an endless ...
8
votes
1answer
1k views

NTFS Junctions vs. Symbolic Links (for directories) [closed]

From a high-level standpoint (meaning only worrying about the results and the interface, not the implementation), what is the difference in behavior, if any, between an NTFS reparse point that points ...
7
votes
2answers
921 views

C# detect folder junctions in a path

I want to make a quick check if in a complete path a Junction point is used. I already have a function to test a folder like IsJunction() but maybe there is an other solution to not call IsJunction() ...
2
votes
2answers
778 views

Does cygwin understand NTFS junction points?

Does cygwin (1.7.x) understand Windows NTFS junction points (as created by mklink in Win7/2008 or sysinternals' junction.exe)? How do they differ from a symbolic link as created by "ln -s "?