FileUtility.cs 709 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6. namespace WeiXin.Library.Utility
  7. {
  8. class FileUtility
  9. {
  10. /// <summary>
  11. /// 读取文件内容
  12. /// </summary>
  13. /// <param name="path">文件路径</param>
  14. /// <returns>string</returns>
  15. public static string Read(string path)
  16. {
  17. string result = null;
  18. using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read))
  19. {
  20. StreamReader reader = new StreamReader(fs, Encoding.UTF8);
  21. result = reader.ReadToEnd();
  22. }
  23. return result;
  24. }
  25. }
  26. }