在c#中使用WriteAllText时,另一个进程正在使用该文件

时间:2016-04-13 04:31:22

标签: c# file writealltext

我正在检查文件是否存在,如果指定的位置,如果是,我正在用&#39替换单引号。为此,我使用WriteAllText方法。据我所知,WriteAllText将用于Create file and write the text and close it, target file is already exists, it will be overwritten

我不知道为什么我在使用

时获得System.IOException
var file = AppDomain.CurrentDomain.BaseDirectory + "test";
if (Directory.Exists(file))
{
    string text = File.ReadAllText(file + "\\test.txt");
    text = text.Replace("'", "&#39");
    File.WriteAllText(file + "\\test.txt", text);
}

注意:我在Application_BeginRequest方法中使用此功能。

建议我如何避免这种异常?

2 个答案:

答案 0 :(得分:0)

使用下面的代码

            var file = AppDomain.CurrentDomain.BaseDirectory + "test.txt";
            if (File.Exists(file))
            {
                string text = File.ReadAllText(file);
                text = text.Replace("'", "&#39");
                File.WriteAllText(file, text);
            }

希望这能解决您的问题

答案 1 :(得分:0)

首先, 您在使用

时询问是否存在目录
Directory.Exists(file)

为了检查文件是否存在,您需要使用

File.Exists(file)

其次, 您正在尝试从文件中读取ReadAllText,方法是再次将与文件名连接的文件作为参数传递。因此,您传递的文件名实际上是:

AppDomain.CurrentDomain.BaseDirectory + "test.txt" + "\\test.txt";

第三,WriteAllText和ReadAllText的注释相同。

网上有很多例子可以学习如何从文件中读取和写入,例如:

Read from a Text File - MSDN
Write to a Text File - MSDN