123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Security.Cryptography;
- using System.Text;
- using System.Threading.Tasks;
- namespace Tede.Data.Tests.Utils
- {
- public static class FileUtils
- {
- public static string TryReadText(string filePath)
- {
- var text = string.Empty;
- try
- {
- if (IsFileExists(filePath))
- {
- text = ReadText(filePath, Encoding.UTF8);
- }
- }
- catch
- {
- // ignored
- }
- return text;
- }
- public static string ReadText(string filePath, Encoding encoding)
- {
- return File.ReadAllText(filePath, encoding);
- }
- public static string ReadText(string filePath)
- {
- return File.ReadAllText(filePath, Encoding.UTF8);
- }
- public static async Task<string> ReadTextAsync(string filePath)
- {
- return await ReadTextAsync(filePath, Encoding.UTF8);
- }
- public static async Task<string> ReadTextAsync(string filePath, Encoding encoding)
- {
- using (var sr = new StreamReader(filePath, encoding))
- {
- var text = await sr.ReadToEndAsync();
- sr.Close();
- return text;
- }
- }
- public static async Task WriteTextAsync(string filePath, string content)
- {
- await WriteTextAsync(filePath, Encoding.UTF8, content);
- }
- public static async Task WriteTextAsync(string filePath, Encoding encoding, string content)
- {
- DirectoryUtils.CreateDirectoryIfNotExists(filePath);
- byte[] encodedText = encoding.GetBytes(content);
- using (FileStream sourceStream = new FileStream(filePath,
- FileMode.Create, FileAccess.ReadWrite, FileShare.None, bufferSize: 4096, useAsync: true))
- {
- await sourceStream.WriteAsync(encodedText, 0, encodedText.Length);
- }
- }
- public static void WriteText(string filePath, string content)
- {
- WriteText(filePath, Encoding.UTF8, content);
- }
- public static void WriteText(string filePath, Encoding encoding, string content)
- {
- DirectoryUtils.CreateDirectoryIfNotExists(filePath);
- File.WriteAllText(filePath, content, encoding);
- // var file = new FileStream(filePath, FileMode.Create, FileAccess.ReadWrite);
- // using (var writer = new StreamWriter(file, encoding))
- // {
- // writer.Write(content);
- // writer.Flush();
- // writer.Close();
- // file.Close();
- // }
- }
- public static void AppendText(string filePath, string content)
- {
- AppendText(filePath, Encoding.UTF8, content);
- }
- public static void AppendText(string filePath, Encoding encoding, string content)
- {
- DirectoryUtils.CreateDirectoryIfNotExists(filePath);
- using (var file = new FileStream(filePath, FileMode.Append, FileAccess.Write))
- {
- using (var writer = new StreamWriter(file, encoding))
- {
- writer.Write(content);
- writer.Flush();
- writer.Close();
- file.Close();
- }
- }
- }
- public static async Task AppendTextAsync(string filePath, Encoding encoding, string content)
- {
- DirectoryUtils.CreateDirectoryIfNotExists(filePath);
- using (var file = new FileStream(filePath, FileMode.Append, FileAccess.Write))
- {
- using (var writer = new StreamWriter(file, encoding))
- {
- await writer.WriteAsync(content);
- writer.Flush();
- writer.Close();
- file.Close();
- }
- }
- }
- public static void RemoveReadOnlyAndHiddenIfExists(string filePath)
- {
- if (File.Exists(filePath))
- {
- var fileAttributes = File.GetAttributes(filePath);
- if (IsReadOnly(fileAttributes) || IsHidden(fileAttributes))
- {
- File.SetAttributes(filePath, FileAttributes.Normal);
- }
- }
- }
- public static bool IsReadOnly(FileAttributes fileAttributes)
- {
- return ((fileAttributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly);
- }
- public static bool IsHidden(FileAttributes fileAttributes)
- {
- return (fileAttributes & FileAttributes.Hidden) == FileAttributes.Hidden;
- }
- public static FileStream GetFileStreamReadOnly(string filePath)
- {
- return new FileStream(filePath, FileMode.Open);
- }
- public static string ReadBase64StringFromFile(string filePath)
- {
- using (var fin = new FileStream(filePath, FileMode.Open, FileAccess.Read))
- {
- var storage = new byte[fin.Length];
- fin.Read(storage, 0, storage.Length);
- fin.Close();
- var text = Convert.ToBase64String(storage, 0, storage.Length);
- return text;
- }
- }
- public static bool IsFileExists(string filePath)
- {
- return File.Exists(filePath);
- }
- public static bool DeleteFileIfExists(string filePath)
- {
- var retval = true;
- try
- {
- if (IsFileExists(filePath))
- {
- File.Delete(filePath);
- }
- }
- catch
- {
- //try
- //{
- // Scripting.FileSystemObject fso = new Scripting.FileSystemObjectClass();
- // fso.DeleteFile(filePath, true);
- //}
- //catch
- //{
- // retval = false;
- //}
- retval = false;
- }
- return retval;
- }
- public static void DeleteFilesIfExists(string directoryPath, List<string> fileNameArrayList)
- {
- foreach (string fileName in fileNameArrayList)
- {
- var filePath = Path.Combine(directoryPath, fileName);
- DeleteFileIfExists(filePath);
- }
- }
- public static void DeleteFilesIfExists(string[] filePaths)
- {
- foreach (var filePath in filePaths)
- {
- DeleteFileIfExists(filePath);
- }
- }
- public static bool CopyFile(string sourceFilePath, string destFilePath)
- {
- return CopyFile(sourceFilePath, destFilePath, true);
- }
- public static bool CopyFile(string sourceFilePath, string destFilePath, bool isOverride)
- {
- var retval = true;
- try
- {
- DirectoryUtils.CreateDirectoryIfNotExists(destFilePath);
- File.Copy(sourceFilePath, destFilePath, isOverride);
- }
- catch
- {
- retval = false;
- }
- return retval;
- }
- //public static bool MoveFile(string sourceFilePath, string destFilePath)
- //{
- // DirectoryUtils.CreateDirectoryIfNotExists(destFilePath);
- // bool retval = true;
- // try
- // {
- // File.Move(sourceFilePath, destFilePath);
- // }
- // catch
- // {
- // retval = false;
- // }
- // return retval;
- //}
- public static void MoveFile(string sourceFilePath, string destFilePath, bool isOverride)
- {
- //如果文件不存在,则进行复制。
- var isExists = IsFileExists(destFilePath);
- if (isOverride)
- {
- if (isExists)
- {
- DeleteFileIfExists(destFilePath);
- }
- CopyFile(sourceFilePath, destFilePath);
- }
- else if (!isExists)
- {
- CopyFile(sourceFilePath, destFilePath);
- }
- }
- public static string ComputeHash(string filePath)
- {
- using (var md5 = MD5.Create())
- {
- using (var stream = File.OpenRead(filePath))
- {
- return BitConverter.ToString(md5.ComputeHash(stream)).Replace("-", "").ToLower();
- }
- }
- }
- public class EncodingType
- {
- /// <summary>
- /// 给定文件的路径,读取文件的二进制数据,判断文件的编码类型
- /// </summary>
- /// <param name="fileName">文件路径</param>
- /// <returns>文件的编码类型</returns>
- public static Encoding GetType(string fileName)
- {
- var fs = new FileStream(fileName, FileMode.Open, FileAccess.Read);
- var r = GetType(fs);
- fs.Close();
- return r;
- }
- /// <summary>
- /// 通过给定的文件流,判断文件的编码类型
- /// </summary>
- /// <param name="fs">文件流</param>
- /// <returns>文件的编码类型</returns>
- public static Encoding GetType(FileStream fs)
- {
- var reVal = Encoding.Default;
- var r = new BinaryReader(fs, Encoding.Default);
- //int i;
- //int.TryParse(fs.Length.ToString(), out i);
- var i = TranslateUtils.ToInt(fs.Length.ToString());
- var ss = r.ReadBytes(i);
- if (IsUtf8Bytes(ss) || (ss[0] == 0xEF && ss[1] == 0xBB && ss[2] == 0xBF))
- {
- reVal = Encoding.UTF8;
- }
- else if (ss[0] == 0xFE && ss[1] == 0xFF && ss[2] == 0x00)
- {
- reVal = Encoding.BigEndianUnicode;
- }
- else if (ss[0] == 0xFF && ss[1] == 0xFE && ss[2] == 0x41)
- {
- reVal = Encoding.Unicode;
- }
- r.Close();
- return reVal;
- }
- /// <summary>
- /// 判断是否是不带 BOM 的 UTF8 格式
- /// </summary>
- /// <param name="data"></param>
- /// <returns></returns>
- private static bool IsUtf8Bytes(byte[] data)
- {
- var charByteCounter = 1; //计算当前正分析的字符应还有的字节数
- foreach (var t in data)
- {
- var curByte = t;
- if (charByteCounter == 1)
- {
- if (curByte >= 0x80)
- {
- //判断当前
- while (((curByte <<= 1) & 0x80) != 0)
- {
- charByteCounter++;
- }
- //标记位首位若为非0 则至少以2个1开始 如:110XXXXX...........1111110X
- if (charByteCounter == 1 || charByteCounter > 6)
- {
- return false;
- }
- }
- }
- else
- {
- //若是UTF-8 此时第一位必须为1
- if ((curByte & 0xC0) != 0x80)
- {
- return false;
- }
- charByteCounter--;
- }
- }
- if (charByteCounter > 1)
- {
- throw new Exception("非预期的byte格式");
- }
- return true;
- }
- }
- public static string GetFileSizeByFilePath(string filePath)
- {
- if (!string.IsNullOrEmpty(filePath))
- {
- var theFile = new FileInfo(filePath);
- var fileSize = theFile.Length;
- if (fileSize < 1024)
- {
- return fileSize.ToString() + "B";
- }
- else if (fileSize >= 1024 && fileSize < 1048576)
- {
- return (fileSize / 1024).ToString() + "KB";
- }
- else
- {
- return (fileSize / 1048576).ToString() + "MB";
- }
- }
- else
- {
- return string.Empty;
- }
- }
- // public static void ObjectToXmlFile<T>(T objectToConvert, string path) where T : class
- // {
- // if (objectToConvert != null)
- // {
- // var ser = new XmlSerializer(typeof(T));
- // //will hold the xml
- // using (var writer = new StreamWriter(path))
- // {
- // ser.Serialize(writer, objectToConvert);
- // writer.Close();
- // }
- // }
- // }
- // public static T XmlFileToObject<T>(string path) where T : class
- // {
- // T convertedObject = default(T);
- // if (path != null && path.Length > 0)
- // {
- // using (var fs = new FileStream(path, FileMode.Open, FileAccess.Read))
- // {
- // var ser = new XmlSerializer(typeof(T));
- // convertedObject = ser.Deserialize(fs) as T;
- // fs.Close();
- // }
- // }
- // return convertedObject;
- // }
- }
- }
|