@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Retrieves the target of a symbolic link. !!!!C# Signature: [DllImport("ntdll.dll")] public static extern int NtQuerySymbolicLinkObject( SafeFileHandle LinkHandle, ref UNICODE_STRING LinkTarget, out int ReturnedLength); !!!!User-Defined Types: [UNICODE_STRING] !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: None. !!!!Tips & Tricks: Requires buffers. For example: int len; var buffer = new UNICODE_STRING(new string(' ', 512)); NtQuerySymbolicLinkObject(h, ref buffer, out len); Debug.WriteLine(buffer.ToString()); !!!!Sample Code: cf. NtOpenSymbolicLinkObject Documentation: NtQuerySymbolicLinkObject@msdn on MSDN
Edit ntdll.NtQuerySymb...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.