GetShortPathName

    GetShortPathName - 단축 path명 얻기

    GetShortPathName함수는 지정된 Full Path에서 Short Path를 가져오는 함수입니다. Declare Function GetShortPathName Lib "kernel32" Alias "GetShortPathNameA" (ByVal lpszIntegerPath As String, ByVal lpszShortPath As String, ByVal cchBuffer As Integer) As Integer ▶VB.NET 선언 [DllImport("kernel32")] public static extern int GetShortPathName(string lpszIntegerPath, StringBuilder lpszShortPath, int cchBuffer); ▶C# 선언 GetSho..