C# 使用System.IO.File.Create

在一个程序里偶然用了System.IO.File.Create去创建文件,运行时一直报错(进程被占用),后来在网上找到了解决办法,引用了一下。

winfrom中操作文件:


判断是否有当前的文件存在,不存在则进行创建,在进行操作;

Code:

if(!System.IO.File.Exists(fileName))
{
    System.IO.File.Create(fileName);
}

但是当我运行到发现没有当前的文件,就直接创建当前文件,之后直接进行操作,出问题了直接报出异常,当前文件正在另一个进程中使用……仔细一看 System.IO.File.Create(fileName)返回的类型是FileStream,ND文件流,文件流不关闭不出异常那才叫怪呢。

提供两种解决的方法:


Code:

方法一:

if(!System.IO.File.Exists(fileName))
{
    System.IO.File.Create(fileName).Close();
}

方法二:

if(!System.IO.File.Exists(fileName))
{
    using(System.IO.File.Create(fileName))

    {

        //……

    }
}

你可能感兴趣的:(C#)