CSKernelFile.cFile.getPath C# (CSharp) Method

getPath() public static method

public static getPath ( string fullFileName ) : string
fullFileName string
return string
        public static string getPath(string fullFileName)
        {
            string path = "";
            string fileName = "";

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

Same methods

cFile::getPath ( ) : string