示例#1
0
        public static byte[] ReadAllBytesFromFileUsingZetaLongPaths(string filePath)
        {
            byte[] r = null;

            ZetaLongPaths.ZlpFileInfo fi = new ZlpFileInfo(filePath);
            r = fi.ReadAllBytes();

            return(r);
        }