CSKernelFile.cFile.getPath C# (CSharp) Метод

getPath() публичный статический Метод

public static getPath ( string fullFileName ) : string
fullFileName string
Результат string
        public static string getPath(string fullFileName)
        {
            string path = "";
            string fileName = "";

            getPathAndFileName(fullFileName, out path, out fileName);
            return path;
        }

Same methods

cFile::getPath ( ) : string