Kimono.KMimeType.ExtractKnownExtension C# (CSharp) 메소드

ExtractKnownExtension() 공개 정적인 메소드

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
리턴 string
        public static string ExtractKnownExtension(string fileName)
        {
            return (string) staticInterceptor.Invoke("extractKnownExtension$", "extractKnownExtension(const QString&)", typeof(string), typeof(string), fileName);
        }