星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FileToolsCommon.cs 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780
  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)
  149. {
  150. throw new ApplicationException("请使用管理员权限运行!");
  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. #endregion
  514. #region 从文件的绝对路径中获取文件名( 不包含扩展名 )
  515. /// <summary>
  516. /// 从文件的绝对路径中获取文件名( 不包含扩展名 )
  517. /// </summary>
  518. /// <param name="filePath">文件的绝对路径</param>
  519. public static string GetFileNameNoExtension(string filePath)
  520. {
  521. //获取文件的名称
  522. FileInfo fi = new FileInfo(filePath);
  523. return fi.Name.Split('.')[0];
  524. }
  525. #endregion
  526. #region 从文件的绝对路径中获取扩展名
  527. /// <summary>
  528. /// 从文件的绝对路径中获取扩展名
  529. /// </summary>
  530. /// <param name="filePath">文件的绝对路径</param>
  531. public static string GetExtension(string filePath)
  532. {
  533. //获取文件的名称
  534. FileInfo fi = new FileInfo(filePath);
  535. return fi.Extension;
  536. }
  537. #endregion
  538. #region 清空指定目录
  539. /// <summary>
  540. /// 清空指定目录下所有文件及子目录,但该目录依然保存.
  541. /// </summary>
  542. /// <param name="directoryPath">指定目录的绝对路径</param>
  543. public static void ClearDirectory(string directoryPath)
  544. {
  545. if (IsExistDirectory(directoryPath))
  546. {
  547. //删除目录中所有的文件
  548. string[] fileNames = GetFileNames(directoryPath);
  549. foreach (string t in fileNames)
  550. {
  551. DeleteFile(t);
  552. }
  553. //删除目录中所有的子目录
  554. string[] directoryNames = GetDirectories(directoryPath);
  555. foreach (string t in directoryNames)
  556. {
  557. DeleteDirectory(t);
  558. }
  559. }
  560. }
  561. #endregion
  562. #region 清空文件内容
  563. /// <summary>
  564. /// 清空文件内容
  565. /// </summary>
  566. /// <param name="filePath">文件的绝对路径</param>
  567. public static void ClearFile(string filePath)
  568. {
  569. //删除文件
  570. File.Delete(filePath);
  571. //重新创建该文件
  572. CreateFile(filePath);
  573. }
  574. #endregion
  575. #region 删除指定文件
  576. /// <summary>
  577. /// 删除指定文件
  578. /// </summary>
  579. /// <param name="filePath">文件的绝对路径</param>
  580. public static void DeleteFile(string filePath)
  581. {
  582. if (IsExistFile(filePath))
  583. {
  584. File.Delete(filePath);
  585. }
  586. }
  587. #endregion
  588. #region 删除指定目录
  589. /// <summary>
  590. /// 删除指定目录及其所有子目录
  591. /// </summary>
  592. /// <param name="directoryPath">指定目录的绝对路径</param>
  593. public static void DeleteDirectory(string directoryPath)
  594. {
  595. if (IsExistDirectory(directoryPath))
  596. {
  597. Directory.Delete(directoryPath, true);
  598. }
  599. }
  600. #endregion
  601. #region 获取指定目录大小
  602. /// <summary>
  603. /// 获取目录大小
  604. /// </summary>
  605. /// <param name="directoryPath">目录地址</param>
  606. /// <returns> 单位:MB</returns>
  607. public static double pathSize(string directoryPath)
  608. {
  609. DirectoryInfo folder = new DirectoryInfo(directoryPath);
  610. double DirectorySize = DirSize(folder);
  611. for (int i = 0; i < 2; i++)
  612. {
  613. DirectorySize /= (double)1024;
  614. }
  615. return DirectorySize;
  616. }
  617. /// <summary>
  618. /// 获取目录大小
  619. /// </summary>
  620. /// <param name="d">目录</param>
  621. /// <returns>字节</returns>
  622. public static long DirSize(DirectoryInfo d)
  623. {
  624. long Size = 0;
  625. // 所有文件大小.
  626. FileInfo[] fis = d.GetFiles();
  627. foreach (FileInfo fi in fis)
  628. {
  629. Size += fi.Length;
  630. }
  631. // 遍历出当前目录的所有文件夹.
  632. DirectoryInfo[] dis = d.GetDirectories();
  633. foreach (DirectoryInfo di in dis)
  634. {
  635. Size += DirSize(di); //这就用到递归了,调用父方法,注意,这里并不是直接返回值,而是调用父返回来的
  636. }
  637. return (Size);
  638. }
  639. #endregion
  640. #region 移动目录
  641. /// <summary>
  642. /// 移动目录并重命名
  643. /// </summary>
  644. /// <param name="directoryPath">操作目录绝对路径</param>
  645. /// <param name="newDirectoryPath">目标目录绝对路径</param>
  646. /// <param name="Message">返回错误消息,成功则为空</param>
  647. /// <returns></returns>
  648. public static bool MoveDirectory(string directoryPath, string newDirectoryPath, out string Message)
  649. {
  650. Message = "";
  651. try
  652. {
  653. if (!IsExistDirectory(directoryPath))//判断目录是否存在
  654. {
  655. Message = "操作目录不存在!";
  656. return false;
  657. }
  658. if (IsExistDirectory(newDirectoryPath))
  659. {
  660. Message = "目标目录已存在!";
  661. return false;
  662. }
  663. Directory.Move(directoryPath, newDirectoryPath);
  664. return true;
  665. }
  666. catch (Exception ex)
  667. {
  668. Message = ex.Message;
  669. return false;
  670. }
  671. }
  672. #endregion
  673. #region 操作配置文件
  674. #region 从配置文件获取Value
  675. /// <summary>
  676. /// 从配置文件获取Value
  677. /// </summary>
  678. /// <param name="key">配置文件中key字符串</param>
  679. /// <returns></returns>
  680. public static string GetConfigValue(string key)
  681. {
  682. try
  683. {
  684. Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
  685. //获取AppSettings的节点
  686. AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings");
  687. return appsection.Settings[key].Value;
  688. }
  689. catch
  690. {
  691. return "";
  692. }
  693. }
  694. #endregion
  695. #region 设置配置文件
  696. /// <summary>
  697. /// 设置配置文件
  698. /// </summary>
  699. /// <param name="key">配置文件中key字符串</param>
  700. /// <param name="value">配置文件中value字符串</param>
  701. /// <returns></returns>
  702. public static bool SetConfigValue(string key, string value)
  703. {
  704. try
  705. {
  706. //打开配置文件
  707. Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
  708. //获取AppSettings的节点
  709. AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings");
  710. appsection.Settings[key].Value = value;
  711. config.Save();
  712. return true;
  713. }
  714. catch
  715. {
  716. return false;
  717. }
  718. }
  719. #endregion
  720. #endregion
  721. }
  722. }