Business.AviSynthScriptBuilder.GetShortPath C# (CSharp) Method

GetShortPath() private method

private GetShortPath ( string path ) : string
path string
return string
        private string GetShortPath(string path) {
            const int MAX_PATH = 255;
            var shortPath = new StringBuilder(MAX_PATH);
            GetShortPathName(path, shortPath, MAX_PATH);
            return shortPath.ToString();
        }