Exemple #1
0
        public string Read(string filePath)
        {
            var str = Marshal.PtrToStringAnsi(MagicNative.magic_file(_magic, filePath));

            if (str == null)
            {
                throw new MagicException(LastError);
            }
            return(str);
        }