FileUtils.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Security.Cryptography;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Tede.Data.Tests.Utils
  8. {
  9. public static class FileUtils
  10. {
  11. public static string TryReadText(string filePath)
  12. {
  13. var text = string.Empty;
  14. try
  15. {
  16. if (IsFileExists(filePath))
  17. {
  18. text = ReadText(filePath, Encoding.UTF8);
  19. }
  20. }
  21. catch
  22. {
  23. // ignored
  24. }
  25. return text;
  26. }
  27. public static string ReadText(string filePath, Encoding encoding)
  28. {
  29. return File.ReadAllText(filePath, encoding);
  30. }
  31. public static string ReadText(string filePath)
  32. {
  33. return File.ReadAllText(filePath, Encoding.UTF8);
  34. }
  35. public static async Task<string> ReadTextAsync(string filePath)
  36. {
  37. return await ReadTextAsync(filePath, Encoding.UTF8);
  38. }
  39. public static async Task<string> ReadTextAsync(string filePath, Encoding encoding)
  40. {
  41. using (var sr = new StreamReader(filePath, encoding))
  42. {
  43. var text = await sr.ReadToEndAsync();
  44. sr.Close();
  45. return text;
  46. }
  47. }
  48. public static async Task WriteTextAsync(string filePath, string content)
  49. {
  50. await WriteTextAsync(filePath, Encoding.UTF8, content);
  51. }
  52. public static async Task WriteTextAsync(string filePath, Encoding encoding, string content)
  53. {
  54. DirectoryUtils.CreateDirectoryIfNotExists(filePath);
  55. byte[] encodedText = encoding.GetBytes(content);
  56. using (FileStream sourceStream = new FileStream(filePath,
  57. FileMode.Create, FileAccess.ReadWrite, FileShare.None, bufferSize: 4096, useAsync: true))
  58. {
  59. await sourceStream.WriteAsync(encodedText, 0, encodedText.Length);
  60. }
  61. }
  62. public static void WriteText(string filePath, string content)
  63. {
  64. WriteText(filePath, Encoding.UTF8, content);
  65. }
  66. public static void WriteText(string filePath, Encoding encoding, string content)
  67. {
  68. DirectoryUtils.CreateDirectoryIfNotExists(filePath);
  69. File.WriteAllText(filePath, content, encoding);
  70. // var file = new FileStream(filePath, FileMode.Create, FileAccess.ReadWrite);
  71. // using (var writer = new StreamWriter(file, encoding))
  72. // {
  73. // writer.Write(content);
  74. // writer.Flush();
  75. // writer.Close();
  76. // file.Close();
  77. // }
  78. }
  79. public static void AppendText(string filePath, string content)
  80. {
  81. AppendText(filePath, Encoding.UTF8, content);
  82. }
  83. public static void AppendText(string filePath, Encoding encoding, string content)
  84. {
  85. DirectoryUtils.CreateDirectoryIfNotExists(filePath);
  86. using (var file = new FileStream(filePath, FileMode.Append, FileAccess.Write))
  87. {
  88. using (var writer = new StreamWriter(file, encoding))
  89. {
  90. writer.Write(content);
  91. writer.Flush();
  92. writer.Close();
  93. file.Close();
  94. }
  95. }
  96. }
  97. public static async Task AppendTextAsync(string filePath, Encoding encoding, string content)
  98. {
  99. DirectoryUtils.CreateDirectoryIfNotExists(filePath);
  100. using (var file = new FileStream(filePath, FileMode.Append, FileAccess.Write))
  101. {
  102. using (var writer = new StreamWriter(file, encoding))
  103. {
  104. await writer.WriteAsync(content);
  105. writer.Flush();
  106. writer.Close();
  107. file.Close();
  108. }
  109. }
  110. }
  111. public static void RemoveReadOnlyAndHiddenIfExists(string filePath)
  112. {
  113. if (File.Exists(filePath))
  114. {
  115. var fileAttributes = File.GetAttributes(filePath);
  116. if (IsReadOnly(fileAttributes) || IsHidden(fileAttributes))
  117. {
  118. File.SetAttributes(filePath, FileAttributes.Normal);
  119. }
  120. }
  121. }
  122. public static bool IsReadOnly(FileAttributes fileAttributes)
  123. {
  124. return ((fileAttributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly);
  125. }
  126. public static bool IsHidden(FileAttributes fileAttributes)
  127. {
  128. return (fileAttributes & FileAttributes.Hidden) == FileAttributes.Hidden;
  129. }
  130. public static FileStream GetFileStreamReadOnly(string filePath)
  131. {
  132. return new FileStream(filePath, FileMode.Open);
  133. }
  134. public static string ReadBase64StringFromFile(string filePath)
  135. {
  136. using (var fin = new FileStream(filePath, FileMode.Open, FileAccess.Read))
  137. {
  138. var storage = new byte[fin.Length];
  139. fin.Read(storage, 0, storage.Length);
  140. fin.Close();
  141. var text = Convert.ToBase64String(storage, 0, storage.Length);
  142. return text;
  143. }
  144. }
  145. public static bool IsFileExists(string filePath)
  146. {
  147. return File.Exists(filePath);
  148. }
  149. public static bool DeleteFileIfExists(string filePath)
  150. {
  151. var retval = true;
  152. try
  153. {
  154. if (IsFileExists(filePath))
  155. {
  156. File.Delete(filePath);
  157. }
  158. }
  159. catch
  160. {
  161. //try
  162. //{
  163. // Scripting.FileSystemObject fso = new Scripting.FileSystemObjectClass();
  164. // fso.DeleteFile(filePath, true);
  165. //}
  166. //catch
  167. //{
  168. // retval = false;
  169. //}
  170. retval = false;
  171. }
  172. return retval;
  173. }
  174. public static void DeleteFilesIfExists(string directoryPath, List<string> fileNameArrayList)
  175. {
  176. foreach (string fileName in fileNameArrayList)
  177. {
  178. var filePath = Path.Combine(directoryPath, fileName);
  179. DeleteFileIfExists(filePath);
  180. }
  181. }
  182. public static void DeleteFilesIfExists(string[] filePaths)
  183. {
  184. foreach (var filePath in filePaths)
  185. {
  186. DeleteFileIfExists(filePath);
  187. }
  188. }
  189. public static bool CopyFile(string sourceFilePath, string destFilePath)
  190. {
  191. return CopyFile(sourceFilePath, destFilePath, true);
  192. }
  193. public static bool CopyFile(string sourceFilePath, string destFilePath, bool isOverride)
  194. {
  195. var retval = true;
  196. try
  197. {
  198. DirectoryUtils.CreateDirectoryIfNotExists(destFilePath);
  199. File.Copy(sourceFilePath, destFilePath, isOverride);
  200. }
  201. catch
  202. {
  203. retval = false;
  204. }
  205. return retval;
  206. }
  207. //public static bool MoveFile(string sourceFilePath, string destFilePath)
  208. //{
  209. // DirectoryUtils.CreateDirectoryIfNotExists(destFilePath);
  210. // bool retval = true;
  211. // try
  212. // {
  213. // File.Move(sourceFilePath, destFilePath);
  214. // }
  215. // catch
  216. // {
  217. // retval = false;
  218. // }
  219. // return retval;
  220. //}
  221. public static void MoveFile(string sourceFilePath, string destFilePath, bool isOverride)
  222. {
  223. //如果文件不存在,则进行复制。
  224. var isExists = IsFileExists(destFilePath);
  225. if (isOverride)
  226. {
  227. if (isExists)
  228. {
  229. DeleteFileIfExists(destFilePath);
  230. }
  231. CopyFile(sourceFilePath, destFilePath);
  232. }
  233. else if (!isExists)
  234. {
  235. CopyFile(sourceFilePath, destFilePath);
  236. }
  237. }
  238. public static string ComputeHash(string filePath)
  239. {
  240. using (var md5 = MD5.Create())
  241. {
  242. using (var stream = File.OpenRead(filePath))
  243. {
  244. return BitConverter.ToString(md5.ComputeHash(stream)).Replace("-", "‌​").ToLower();
  245. }
  246. }
  247. }
  248. public class EncodingType
  249. {
  250. /// <summary>
  251. /// 给定文件的路径,读取文件的二进制数据,判断文件的编码类型
  252. /// </summary>
  253. /// <param name="fileName">文件路径</param>
  254. /// <returns>文件的编码类型</returns>
  255. public static Encoding GetType(string fileName)
  256. {
  257. var fs = new FileStream(fileName, FileMode.Open, FileAccess.Read);
  258. var r = GetType(fs);
  259. fs.Close();
  260. return r;
  261. }
  262. /// <summary>
  263. /// 通过给定的文件流,判断文件的编码类型
  264. /// </summary>
  265. /// <param name="fs">文件流</param>
  266. /// <returns>文件的编码类型</returns>
  267. public static Encoding GetType(FileStream fs)
  268. {
  269. var reVal = Encoding.Default;
  270. var r = new BinaryReader(fs, Encoding.Default);
  271. //int i;
  272. //int.TryParse(fs.Length.ToString(), out i);
  273. var i = TranslateUtils.ToInt(fs.Length.ToString());
  274. var ss = r.ReadBytes(i);
  275. if (IsUtf8Bytes(ss) || (ss[0] == 0xEF && ss[1] == 0xBB && ss[2] == 0xBF))
  276. {
  277. reVal = Encoding.UTF8;
  278. }
  279. else if (ss[0] == 0xFE && ss[1] == 0xFF && ss[2] == 0x00)
  280. {
  281. reVal = Encoding.BigEndianUnicode;
  282. }
  283. else if (ss[0] == 0xFF && ss[1] == 0xFE && ss[2] == 0x41)
  284. {
  285. reVal = Encoding.Unicode;
  286. }
  287. r.Close();
  288. return reVal;
  289. }
  290. /// <summary>
  291. /// 判断是否是不带 BOM 的 UTF8 格式
  292. /// </summary>
  293. /// <param name="data"></param>
  294. /// <returns></returns>
  295. private static bool IsUtf8Bytes(byte[] data)
  296. {
  297. var charByteCounter = 1;  //计算当前正分析的字符应还有的字节数
  298. foreach (var t in data)
  299. {
  300. var curByte = t;
  301. if (charByteCounter == 1)
  302. {
  303. if (curByte >= 0x80)
  304. {
  305. //判断当前
  306. while (((curByte <<= 1) & 0x80) != 0)
  307. {
  308. charByteCounter++;
  309. }
  310. //标记位首位若为非0 则至少以2个1开始 如:110XXXXX...........1111110X 
  311. if (charByteCounter == 1 || charByteCounter > 6)
  312. {
  313. return false;
  314. }
  315. }
  316. }
  317. else
  318. {
  319. //若是UTF-8 此时第一位必须为1
  320. if ((curByte & 0xC0) != 0x80)
  321. {
  322. return false;
  323. }
  324. charByteCounter--;
  325. }
  326. }
  327. if (charByteCounter > 1)
  328. {
  329. throw new Exception("非预期的byte格式");
  330. }
  331. return true;
  332. }
  333. }
  334. public static string GetFileSizeByFilePath(string filePath)
  335. {
  336. if (!string.IsNullOrEmpty(filePath))
  337. {
  338. var theFile = new FileInfo(filePath);
  339. var fileSize = theFile.Length;
  340. if (fileSize < 1024)
  341. {
  342. return fileSize.ToString() + "B";
  343. }
  344. else if (fileSize >= 1024 && fileSize < 1048576)
  345. {
  346. return (fileSize / 1024).ToString() + "KB";
  347. }
  348. else
  349. {
  350. return (fileSize / 1048576).ToString() + "MB";
  351. }
  352. }
  353. else
  354. {
  355. return string.Empty;
  356. }
  357. }
  358. // public static void ObjectToXmlFile<T>(T objectToConvert, string path) where T : class
  359. // {
  360. // if (objectToConvert != null)
  361. // {
  362. // var ser = new XmlSerializer(typeof(T));
  363. // //will hold the xml
  364. // using (var writer = new StreamWriter(path))
  365. // {
  366. // ser.Serialize(writer, objectToConvert);
  367. // writer.Close();
  368. // }
  369. // }
  370. // }
  371. // public static T XmlFileToObject<T>(string path) where T : class
  372. // {
  373. // T convertedObject = default(T);
  374. // if (path != null && path.Length > 0)
  375. // {
  376. // using (var fs = new FileStream(path, FileMode.Open, FileAccess.Read))
  377. // {
  378. // var ser = new XmlSerializer(typeof(T));
  379. // convertedObject = ser.Deserialize(fs) as T;
  380. // fs.Close();
  381. // }
  382. // }
  383. // return convertedObject;
  384. // }
  385. }
  386. }