1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| #region
|
| using System.IO;
|
| #endregion
|
| namespace CSFrameworkV5.Common
| {
| /// <summary>
| /// 文件操作相关的公共类
| /// </summary>
| public class FileIO
| {
| /// <summary>
| /// 检查文件是否被独占打开
| /// </summary>
| /// <param name="filePath"></param>
| /// <returns></returns>
| public static bool IsOpen(string filePath)
| {
| try
| {
| var fs = File.Open(filePath, FileMode.Open, FileAccess.Write);
| fs.Close();
| return false;
| }
| catch
| {
| return true;
| }
| }
| }
| }
|
|