Ejemplo n.º 1
0
        private static bool UseMD5(string path)
        {
            if (!XLPack.IsFileExist(path))
            {
                return(false);
            }
            var position = XLPack.FOpen(path, "r");
            var res      = XLPack.FUseMD5(position);

            XLPack.FClose(ref position);
            return(res);
        }