I'm writing a Batch file (.bat) and I couldn't find a way to discover if a given directory I have the path to is a real directory or a Junction (created on Windows 7 by using mklink /j). Can anyone point me in the right direction?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
This is a lousy technique but |
|||||||||||||
|
|
In a batch script you can use the following:
... this is quicker than calling DIR /AL. The %%~aA gets the attributes of the "linkfilename", a 9 char string like "d--------" (a directory), or "d-------l" a link to a directory, or "--------l" a link to a file. %Z:~8,1% then grabs just the reparse point attribute. |
||||
|
|