CSKernelFile.cFile.getFileName C# (CSharp) Method

getFileName() public static method

public static getFileName ( string fullFileName ) : string
fullFileName string
return string
        public static string getFileName(string fullFileName)
        {
            return getFileWithoutExt(fullFileName) + "." + getFileExt(fullFileName);
        }