星火微课系统客户端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

FileToolsCommon.cs 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Configuration;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace Common.system
  9. {
  10. /// <summary>
  11. /// 文件工具公共方法
  12. /// 创建人:赵耀
  13. /// 创建时间:2018年11月6日
  14. /// </summary>
  15. public static class FileToolsCommon
  16. {
  17. /// <summary>
  18. /// 获取文件的绝对路径
  19. /// </summary>
  20. /// <param name="Path">相对路径</param>
  21. /// <returns></returns>
  22. public static string GetFileAbsolutePath(string Path = "")
  23. {
  24. try
  25. {
  26. if (!string.IsNullOrWhiteSpace(Path))
  27. {
  28. Path = Path.Replace("\\", "/");
  29. if (Path != "/")
  30. {
  31. if (Path.Substring(1, 1) == ":")
  32. return Path;
  33. if (Path.Substring(0, 1) != "/")
  34. Path = "/" + Path;
  35. }
  36. }
  37. string AbsolutePath = Application.StartupPath.ToString().Replace("\\", "/") + Path;
  38. return AbsolutePath;
  39. }
  40. catch (Exception)
  41. {
  42. return Path;
  43. }
  44. }
  45. #region 检测指定目录是否存在
  46. /// <summary>
  47. /// 检测指定目录是否存在
  48. /// </summary>
  49. /// <param name="directoryPath">目录的绝对路径</param>
  50. public static bool IsExistDirectory(string directoryPath)
  51. {
  52. return Directory.Exists(directoryPath);
  53. }
  54. #endregion
  55. #region 检测指定文件是否存在
  56. /// <summary>
  57. /// 检测指定文件是否存在,如果存在则返回true。
  58. /// </summary>
  59. /// <param name="filePath">文件的绝对路径</param>
  60. public static bool IsExistFile(string filePath)
  61. {
  62. return File.Exists(filePath);
  63. }
  64. #endregion
  65. #region 检测指定目录是否为空
  66. /// <summary>
  67. /// 检测指定目录是否为空
  68. /// </summary>
  69. /// <param name="directoryPath">指定目录的绝对路径</param>
  70. public static bool IsEmptyDirectory(string directoryPath)
  71. {
  72. try
  73. {
  74. //判断是否存在文件
  75. string[] fileNames = GetFileNames(directoryPath);
  76. if (fileNames.Length > 0)
  77. {
  78. return false;
  79. }
  80. //判断是否存在文件夹
  81. string[] directoryNames = GetDirectories(directoryPath);
  82. return directoryNames.Length <= 0;
  83. }
  84. catch
  85. {
  86. return false;
  87. }
  88. }
  89. #endregion
  90. #region 检测指定目录中是否存在指定的文件
  91. /// <summary>
  92. /// 检测指定目录中是否存在指定的文件,若要搜索子目录请使用重载方法.
  93. /// </summary>
  94. /// <param name="directoryPath">指定目录的绝对路径</param>
  95. /// <param name="searchPattern">模式字符串,"*"代表0或N个字符,"?"代表1个字符。
  96. /// 范例:"Log*.xml"表示搜索所有以Log开头的Xml文件。</param>
  97. public static bool Contains(string directoryPath, string searchPattern)
  98. {
  99. try
  100. {
  101. //获取指定的文件列表
  102. string[] fileNames = GetFileNames(directoryPath, searchPattern, false);
  103. //判断指定文件是否存在
  104. return fileNames.Length != 0;
  105. }
  106. catch
  107. {
  108. return false;
  109. }
  110. }
  111. /// <summary>
  112. /// 检测指定目录中是否存在指定的文件
  113. /// </summary>
  114. /// <param name="directoryPath">指定目录的绝对路径</param>
  115. /// <param name="searchPattern">模式字符串,"*"代表0或N个字符,"?"代表1个字符。
  116. /// 范例:"Log*.xml"表示搜索所有以Log开头的Xml文件。</param>
  117. /// <param name="isSearchChild">是否搜索子目录</param>
  118. public static bool Contains(string directoryPath, string searchPattern, bool isSearchChild)
  119. {
  120. try
  121. {
  122. //获取指定的文件列表
  123. string[] fileNames = GetFileNames(directoryPath, searchPattern, true);
  124. //判断指定文件是否存在
  125. return fileNames.Length != 0;
  126. }
  127. catch
  128. {
  129. return false;
  130. }
  131. }
  132. #endregion
  133. #region 创建一个目录
  134. /// <summary>
  135. /// 创建一个目录
  136. /// </summary>
  137. /// <param name="directoryPath">目录的绝对路径</param>
  138. public static void CreateDirectory(string directoryPath)
  139. {
  140. try
  141. {
  142. //如果目录不存在则创建该目录
  143. if (!IsExistDirectory(directoryPath))
  144. {
  145. Directory.CreateDirectory(directoryPath);
  146. }
  147. }
  148. catch (Exception ex)
  149. {
  150. throw new ApplicationException(ex.Message); //"请使用管理员权限运行!"
  151. }
  152. }
  153. #endregion
  154. #region 创建一个文件
  155. /// <summary>
  156. /// 创建一个文件。
  157. /// </summary>
  158. /// <param name="filePath">文件的绝对路径</param>
  159. public static bool CreateFile(string filePath)
  160. {
  161. try
  162. {
  163. //如果文件不存在则创建该文件
  164. if (!IsExistFile(filePath))
  165. {
  166. //创建一个FileInfo对象
  167. FileInfo file = new FileInfo(filePath);
  168. //创建文件
  169. FileStream fs = file.Create();
  170. //关闭文件流
  171. fs.Close();
  172. }
  173. }
  174. catch
  175. {
  176. return false;
  177. }
  178. return true;
  179. }
  180. /// <summary>
  181. /// 创建一个文件,并将字节流写入文件。
  182. /// </summary>
  183. /// <param name="filePath">文件的绝对路径</param>
  184. /// <param name="buffer">二进制流数据</param>
  185. public static bool CreateFile(string filePath, byte[] buffer)
  186. {
  187. try
  188. {
  189. //如果文件不存在则创建该文件
  190. if (!IsExistFile(filePath))
  191. {
  192. //创建一个FileInfo对象
  193. FileInfo file = new FileInfo(filePath);
  194. //创建文件
  195. FileStream fs = file.Create();
  196. //写入二进制流
  197. fs.Write(buffer, 0, buffer.Length);
  198. //关闭文件流
  199. fs.Close();
  200. }
  201. }
  202. catch
  203. {
  204. return false;
  205. }
  206. return true;
  207. }
  208. #endregion
  209. #region 获取文本文件的行数
  210. /// <summary>
  211. /// 获取文本文件的行数
  212. /// </summary>
  213. /// <param name="filePath">文件的绝对路径</param>
  214. public static int GetLineCount(string filePath)
  215. {
  216. //将文本文件的各行读到一个字符串数组中
  217. string[] rows = File.ReadAllLines(filePath);
  218. //返回行数
  219. return rows.Length;
  220. }
  221. #endregion
  222. #region 获取一个文件的长度
  223. /// <summary>
  224. /// 获取一个文件的长度,单位为Byte
  225. /// </summary>
  226. /// <param name="filePath">文件的绝对路径</param>
  227. public static int GetFileSize(string filePath)
  228. {
  229. //创建一个文件对象
  230. FileInfo fi = new FileInfo(filePath);
  231. //获取文件的大小
  232. return (int)fi.Length;
  233. }
  234. /// <summary>
  235. /// 获取一个文件的长度,单位为KB
  236. /// </summary>
  237. /// <param name="filePath">文件的路径</param>
  238. public static double GetFileSizeByKB(string filePath)
  239. {
  240. //创建一个文件对象
  241. FileInfo fi = new FileInfo(filePath);
  242. long size = fi.Length / 1024;
  243. //获取文件的大小
  244. return double.Parse(size.ToString());
  245. }
  246. /// <summary>
  247. /// 获取一个文件的长度,单位为MB
  248. /// </summary>
  249. /// <param name="filePath">文件的路径</param>
  250. public static double GetFileSizeByMB(string filePath)
  251. {
  252. //创建一个文件对象
  253. FileInfo fi = new FileInfo(filePath);
  254. long size = fi.Length / 1024 / 1024;
  255. //获取文件的大小
  256. return double.Parse(size.ToString());
  257. }
  258. #endregion
  259. #region 获取指定目录中的文件列表
  260. /// <summary>
  261. /// 获取指定目录中所有文件列表
  262. /// </summary>
  263. /// <param name="directoryPath">指定目录的绝对路径</param>
  264. public static FileInfo[] GetFileInfos(string directoryPath, string files = null)
  265. {
  266. //如果目录不存在,则抛出异常
  267. if (!IsExistDirectory(directoryPath))
  268. {
  269. return null;//throw new FileNotFoundException();
  270. }
  271. DirectoryInfo folder = new DirectoryInfo(directoryPath);
  272. FileInfo[] fileList = null;
  273. if (files == null)
  274. fileList = folder.GetFiles();
  275. else
  276. fileList = folder.GetFiles(files);
  277. //获取文件列表
  278. return fileList;
  279. }
  280. /// <summary>
  281. /// 获取指定目录中所有文件列表
  282. /// </summary>
  283. /// <param name="directoryPath">指定目录的绝对路径</param>
  284. public static string[] GetFileNames(string directoryPath)
  285. {
  286. //如果目录不存在,则抛出异常
  287. if (!IsExistDirectory(directoryPath))
  288. {
  289. return null;//throw new FileNotFoundException();
  290. }
  291. //获取文件列表
  292. return Directory.GetFiles(directoryPath);
  293. }
  294. /// <summary>
  295. /// 获取指定目录及子目录中所有文件列表
  296. /// </summary>
  297. /// <param name="directoryPath">指定目录的绝对路径</param>
  298. /// <param name="searchPattern">模式字符串,"*"代表0或N个字符,"?"代表1个字符。
  299. /// 范例:"Log*.xml"表示搜索所有以Log开头的Xml文件。</param>
  300. /// <param name="isSearchChild">是否搜索子目录</param>
  301. public static string[] GetFileNames(string directoryPath, string searchPattern, bool isSearchChild)
  302. {
  303. //如果目录不存在,则抛出异常
  304. if (!IsExistDirectory(directoryPath))
  305. {
  306. return null;//throw new FileNotFoundException();
  307. }
  308. try
  309. {
  310. return Directory.GetFiles(directoryPath, searchPattern, isSearchChild ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly);
  311. }
  312. catch
  313. {
  314. return null;
  315. }
  316. }
  317. #endregion
  318. #region 获取指定目录中的子目录列表
  319. /// <summary>
  320. /// 获取指定目录中所有子目录列表,若要搜索嵌套的子目录列表,请使用重载方法.
  321. /// </summary>
  322. /// <param name="directoryPath">指定目录的绝对路径</param>
  323. public static string[] GetDirectories(string directoryPath)
  324. {
  325. try
  326. {
  327. return Directory.GetDirectories(directoryPath);
  328. }
  329. catch
  330. {
  331. return null;
  332. }
  333. }
  334. /// <summary>
  335. /// 获取指定目录及子目录中所有子目录列表
  336. /// </summary>
  337. /// <param name="directoryPath">指定目录的绝对路径</param>
  338. /// <param name="searchPattern">模式字符串,"*"代表0或N个字符,"?"代表1个字符。
  339. /// 范例:"Log*.xml"表示搜索所有以Log开头的Xml文件。</param>
  340. /// <param name="isSearchChild">是否搜索子目录</param>
  341. public static string[] GetDirectories(string directoryPath, string searchPattern, bool isSearchChild)
  342. {
  343. try
  344. {
  345. return Directory.GetDirectories(directoryPath, searchPattern, isSearchChild ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly);
  346. }
  347. catch
  348. {
  349. return null;//throw
  350. }
  351. }
  352. #endregion
  353. #region 向文本文件写入内容
  354. /// <summary>
  355. /// 向文本文件中写入内容
  356. /// </summary>
  357. /// <param name="filePath">文件的绝对路径</param>
  358. /// <param name="content">写入的内容</param>
  359. public static void WriteText(string filePath, string content)
  360. {
  361. //向文件写入内容
  362. File.WriteAllText(filePath, content);
  363. }
  364. #endregion
  365. #region 向文本文件的尾部追加内容
  366. /// <summary>
  367. /// 向文本文件的尾部追加内容
  368. /// </summary>
  369. /// <param name="filePath">文件的绝对路径</param>
  370. /// <param name="content">写入的内容</param>
  371. public static void AppendText(string filePath, string content)
  372. {
  373. File.AppendAllText(filePath, content);
  374. }
  375. #endregion
  376. #region 将现有文件的内容复制到新文件中
  377. /// <summary>
  378. /// 将源文件的内容复制到目标文件中
  379. /// </summary>
  380. /// <param name="sourceFilePath">源文件的绝对路径</param>
  381. /// <param name="destFilePath">目标文件的绝对路径</param>
  382. public static void Copy(string sourceFilePath, string destFilePath)
  383. {
  384. File.Copy(sourceFilePath, destFilePath, true);
  385. }
  386. #endregion
  387. #region 将文件移动到指定目录
  388. /// <summary>
  389. /// 将文件移动到指定目录
  390. /// </summary>
  391. /// <param name="sourceFilePath">需要移动的源文件的绝对路径</param>
  392. /// <param name="descDirectoryPath">移动到的目录的绝对路径</param>
  393. public static void Move(string sourceFilePath, string descDirectoryPath)
  394. {
  395. //获取源文件的名称
  396. string sourceFileName = GetFileName(sourceFilePath);
  397. if (IsExistDirectory(descDirectoryPath))
  398. {
  399. //如果目标中存在同名文件,则删除
  400. if (IsExistFile(descDirectoryPath + "\\" + sourceFileName))
  401. {
  402. DeleteFile(descDirectoryPath + "\\" + sourceFileName);
  403. }
  404. //将文件移动到指定目录
  405. File.Move(sourceFilePath, descDirectoryPath + "\\" + sourceFileName);
  406. }
  407. }
  408. #endregion
  409. #region 将流读取到缓冲区中
  410. /// <summary>
  411. /// 将流读取到缓冲区中
  412. /// </summary>
  413. /// <param name="stream">原始流</param>
  414. public static byte[] StreamToBytes(Stream stream)
  415. {
  416. try
  417. {
  418. //创建缓冲区
  419. byte[] buffer = new byte[stream.Length];
  420. //读取流
  421. stream.Read(buffer, 0, int.Parse(stream.Length.ToString()));
  422. //返回流
  423. return buffer;
  424. }
  425. catch
  426. {
  427. return null;
  428. }
  429. finally
  430. {
  431. //关闭流
  432. stream.Close();
  433. }
  434. }
  435. #endregion
  436. #region 将文件读取到缓冲区中
  437. /// <summary>
  438. /// 将文件读取到缓冲区中
  439. /// </summary>
  440. /// <param name="filePath">文件的绝对路径</param>
  441. public static byte[] FileToBytes(string filePath)
  442. {
  443. //获取文件的大小
  444. int fileSize = GetFileSize(filePath);
  445. //创建一个临时缓冲区
  446. byte[] buffer = new byte[fileSize];
  447. //创建一个文件流
  448. FileInfo fi = new FileInfo(filePath);
  449. FileStream fs = fi.Open(FileMode.Open);
  450. try
  451. {
  452. //将文件流读入缓冲区
  453. fs.Read(buffer, 0, fileSize);
  454. return buffer;
  455. }
  456. catch
  457. {
  458. return null;
  459. }
  460. finally
  461. {
  462. //关闭文件流
  463. fs.Close();
  464. }
  465. }
  466. #endregion
  467. #region 将文件读取到字符串中
  468. /// <summary>
  469. /// 将文件读取到字符串中
  470. /// </summary>
  471. /// <param name="filePath">文件的绝对路径</param>
  472. public static string FileToString(string filePath)
  473. {
  474. //return FileToString(filePath, Encoding.Default);
  475. return FileToString(filePath, Encoding.UTF8);
  476. }
  477. /// <summary>
  478. /// 将文件读取到字符串中
  479. /// </summary>
  480. /// <param name="filePath">文件的绝对路径</param>
  481. /// <param name="encoding">字符编码</param>
  482. public static string FileToString(string filePath, Encoding encoding)
  483. {
  484. //创建流读取器
  485. StreamReader reader = new StreamReader(filePath, encoding);
  486. try
  487. {
  488. //读取流
  489. return reader.ReadToEnd();
  490. }
  491. catch
  492. {
  493. return string.Empty;
  494. }
  495. finally
  496. {
  497. //关闭流读取器
  498. reader.Close();
  499. }
  500. }
  501. #endregion
  502. #region 从文件的绝对路径中获取文件名( 包含扩展名 )
  503. /// <summary>
  504. /// 从文件的绝对路径中获取文件名( 包含扩展名 )
  505. /// </summary>
  506. /// <param name="filePath">文件的绝对路径</param>
  507. public static string GetFileName(string filePath)
  508. {
  509. //获取文件的名称
  510. FileInfo fi = new FileInfo(filePath);
  511. return fi.Name;
  512. }
  513. /// <summary>
  514. /// 使用IO从文件的绝对路径中获取文件名( 包含扩展名 )
  515. /// </summary>
  516. /// <param name="filePath">文件的绝对路径</param>
  517. public static string GetIOFileName(string filePath)
  518. {
  519. return Path.GetFileName(filePath);
  520. }
  521. #endregion
  522. #region 从文件的绝对路径中获取文件名( 不包含扩展名 )
  523. /// <summary>
  524. /// 从文件的绝对路径中获取文件名( 不包含扩展名 )
  525. /// </summary>
  526. /// <param name="filePath">文件的绝对路径</param>
  527. public static string GetFileNameNoExtension(string filePath)
  528. {
  529. //获取文件的名称
  530. FileInfo fi = new FileInfo(filePath);
  531. return fi.Name.Split('.')[0];
  532. }
  533. /// <summary>
  534. /// 使用IO从文件的绝对路径中获取文件名( 不包含扩展名 )
  535. /// </summary>
  536. /// <param name="filePath">文件的绝对路径</param>
  537. public static string GetIOFileNameNoExtension(string filePath)
  538. {
  539. return System.IO.Path.GetFileNameWithoutExtension(filePath);
  540. }
  541. #endregion
  542. #region 从文件的绝对路径中获取扩展名
  543. /// <summary>
  544. /// 从文件的绝对路径中获取扩展名
  545. /// </summary>
  546. /// <param name="filePath">文件的绝对路径</param>
  547. public static string GetExtension(string filePath)
  548. {
  549. //获取文件的名称
  550. FileInfo fi = new FileInfo(filePath);
  551. return fi.Extension;
  552. }
  553. /// <summary>
  554. /// 使用IO从文件的绝对路径中获取扩展名
  555. /// </summary>
  556. /// <param name="filePath">文件的绝对路径</param>
  557. public static string GetIOExtension(string filePath)
  558. {
  559. string Extension = System.IO.Path.GetExtension(filePath);
  560. return Extension;
  561. }
  562. #endregion
  563. #region 从文件的绝对路径中获取路径名
  564. /// <summary>
  565. /// 从文件的绝对路径中获取扩展名
  566. /// </summary>
  567. /// <param name="filePath">文件的绝对路径</param>
  568. public static string GetDirectoryName(string filePath)
  569. {
  570. string DirectoryName = (System.IO.Path.GetDirectoryName(filePath) + "\\").Replace("\\", "/");
  571. return DirectoryName;
  572. }
  573. #endregion
  574. #region 清空指定目录
  575. /// <summary>
  576. /// 清空指定目录下所有文件及子目录,但该目录依然保存.
  577. /// </summary>
  578. /// <param name="directoryPath">指定目录的绝对路径</param>
  579. public static void ClearDirectory(string directoryPath)
  580. {
  581. if (IsExistDirectory(directoryPath))
  582. {
  583. //删除目录中所有的文件
  584. string[] fileNames = GetFileNames(directoryPath);
  585. foreach (string t in fileNames)
  586. {
  587. DeleteFile(t);
  588. }
  589. //删除目录中所有的子目录
  590. string[] directoryNames = GetDirectories(directoryPath);
  591. foreach (string t in directoryNames)
  592. {
  593. DeleteDirectory(t);
  594. }
  595. }
  596. }
  597. #endregion
  598. #region 清空文件内容
  599. /// <summary>
  600. /// 清空文件内容
  601. /// </summary>
  602. /// <param name="filePath">文件的绝对路径</param>
  603. public static void ClearFile(string filePath)
  604. {
  605. //删除文件
  606. File.Delete(filePath);
  607. //重新创建该文件
  608. CreateFile(filePath);
  609. }
  610. #endregion
  611. #region 删除指定文件
  612. /// <summary>
  613. /// 删除指定文件
  614. /// </summary>
  615. /// <param name="filePath">文件的绝对路径</param>
  616. public static void DeleteFile(string filePath)
  617. {
  618. if (IsExistFile(filePath))
  619. {
  620. File.Delete(filePath);
  621. }
  622. }
  623. #endregion
  624. #region 删除指定目录
  625. /// <summary>
  626. /// 删除指定目录及其所有子目录
  627. /// </summary>
  628. /// <param name="directoryPath">指定目录的绝对路径</param>
  629. public static void DeleteDirectory(string directoryPath)
  630. {
  631. if (IsExistDirectory(directoryPath))
  632. {
  633. Directory.Delete(directoryPath, true);
  634. }
  635. }
  636. #endregion
  637. #region 获取指定目录大小
  638. /// <summary>
  639. /// 获取目录大小
  640. /// </summary>
  641. /// <param name="directoryPath">目录地址</param>
  642. /// <returns> 单位:MB</returns>
  643. public static double pathSize(string directoryPath)
  644. {
  645. DirectoryInfo folder = new DirectoryInfo(directoryPath);
  646. double DirectorySize = DirSize(folder);
  647. for (int i = 0; i < 2; i++)
  648. {
  649. DirectorySize /= (double)1024;
  650. }
  651. return DirectorySize;
  652. }
  653. /// <summary>
  654. /// 获取目录大小
  655. /// </summary>
  656. /// <param name="d">目录</param>
  657. /// <returns>字节</returns>
  658. public static long DirSize(DirectoryInfo d)
  659. {
  660. long Size = 0;
  661. // 所有文件大小.
  662. FileInfo[] fis = d.GetFiles();
  663. foreach (FileInfo fi in fis)
  664. {
  665. Size += fi.Length;
  666. }
  667. // 遍历出当前目录的所有文件夹.
  668. DirectoryInfo[] dis = d.GetDirectories();
  669. foreach (DirectoryInfo di in dis)
  670. {
  671. Size += DirSize(di); //这就用到递归了,调用父方法,注意,这里并不是直接返回值,而是调用父返回来的
  672. }
  673. return (Size);
  674. }
  675. #endregion
  676. #region 移动目录
  677. /// <summary>
  678. /// 移动目录并重命名
  679. /// </summary>
  680. /// <param name="directoryPath">操作目录绝对路径</param>
  681. /// <param name="newDirectoryPath">目标目录绝对路径</param>
  682. /// <param name="Message">返回错误消息,成功则为空</param>
  683. /// <returns></returns>
  684. public static bool MoveDirectory(string directoryPath, string newDirectoryPath, out string Message)
  685. {
  686. Message = "";
  687. try
  688. {
  689. if (!IsExistDirectory(directoryPath))//判断目录是否存在
  690. {
  691. Message = "操作目录不存在!";
  692. return false;
  693. }
  694. if (IsExistDirectory(newDirectoryPath))
  695. {
  696. Message = "目标目录已存在!";
  697. return false;
  698. }
  699. Directory.Move(directoryPath, newDirectoryPath);
  700. return true;
  701. }
  702. catch (Exception ex)
  703. {
  704. Message = ex.Message;
  705. return false;
  706. }
  707. }
  708. #endregion
  709. #region 操作配置文件
  710. #region 从配置文件获取Value
  711. /// <summary>
  712. /// 从配置文件获取Value
  713. /// </summary>
  714. /// <param name="key">配置文件中key字符串</param>
  715. /// <returns></returns>
  716. public static string GetConfigValue(string key)
  717. {
  718. try
  719. {
  720. Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
  721. //获取AppSettings的节点
  722. AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings");
  723. return appsection.Settings[key].Value;
  724. }
  725. catch
  726. {
  727. return "";
  728. }
  729. }
  730. #endregion
  731. #region 设置配置文件
  732. /// <summary>
  733. /// 设置配置文件
  734. /// </summary>
  735. /// <param name="key">配置文件中key字符串</param>
  736. /// <param name="value">配置文件中value字符串</param>
  737. /// <returns></returns>
  738. public static bool SetConfigValue(string key, string value)
  739. {
  740. try
  741. {
  742. //打开配置文件
  743. Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
  744. //获取AppSettings的节点
  745. AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings");
  746. appsection.Settings[key].Value = value;
  747. config.Save();
  748. return true;
  749. }
  750. catch
  751. {
  752. return false;
  753. }
  754. }
  755. #endregion
  756. #endregion
  757. }
  758. }