Kimono.KMimeType.ExtractKnownExtension C# (CSharp) Method

ExtractKnownExtension() public static method

Determines the extension from a filename (or full path) using the mimetype database. This allows to extract "tar.bz2" for foo.tar.bz2 but still return "txt" for my.doc.with.dots.txt
public static ExtractKnownExtension ( string fileName ) : string
fileName string
return string
        public static string ExtractKnownExtension(string fileName)
        {
            return (string) staticInterceptor.Invoke("extractKnownExtension$", "extractKnownExtension(const QString&)", typeof(string), typeof(string), fileName);
        }