2

我正在尝试删除行尾的空格,然后该行将写入另一个文件。

但是当程序到达时FileWriter它给了我以下错误

进程无法访问,因为它正被另一个进程使用。

代码如下。

private void FrmCounter_Load(object sender, EventArgs e)
{
        string[] filePaths = Directory.GetFiles(@"D:\abc", "*.txt", SearchOption.AllDirectories);
        string activeDir = @"D:\dest";
        System.IO.StreamWriter fw;
        string result;

        foreach (string file in filePaths)
        {
            result = Path.GetFileName(file);
            System.IO.StreamReader f = new StreamReader(file);
            string newFileName = result;
            // Combine the new file name with the path
            string newPath = System.IO.Path.Combine(activeDir, newFileName);
            File.Create(newPath);

            fw = new StreamWriter(newPath);

            int counter = 0;
            int spaceAtEnd = 0;
            string line;

            // Read the file and display it line by line.
            while ((line = f.ReadLine()) != null)
            {
                if (line.EndsWith(" "))
                {
                    spaceAtEnd++;
                    line = line.Substring(0, line.Length - 1);
                }
                fw.WriteLine(line);
                fw.Flush(); 
                counter++;
            }

            MessageBox.Show("File Name : " + result);
            MessageBox.Show("Total Space at end : " + spaceAtEnd.ToString());
            f.Close();
            fw.Close();
        }
}
4

5 回答 5

2

File.Create本身返回一个流。

使用该流写入文件。您收到此错误的原因是因为返回的 StreamFile.Create已打开,并且您正尝试再次打开该文件以进行写入。

关闭由返回的流File.Create或更好地使用该流进行文件写入或使用

Stream newFile = File.Create(newPath);
fw = new StreamWriter(newFile);
于 2012-07-31T12:12:03.197 回答
1

即使您解决了最初的问题,如果您想将所有内容写入原始位置的新文件,您可以尝试将所有数据读入数组并关闭原始StreamReader. 性能说明:如果您的文件足够大,则此选项不会是最佳性能。

而且您不需要File.Create,因为StreamWriter如果文件不存在,将创建一个文件,或者默认覆盖它,或者如果您将append参数指定为false.

result = Path.GetFileName(file);
String[] f = File.ReadAllLines(file);  // major change here... 
                                       //  now f is an array containing all lines 
                                       //  instead of a stream reader

using(var fw = new StreamWriter(result, false))
{
    int counter = f.Length; // you aren't using counter anywhere, so I don't know if 
                            //  it is needed, but now you can just access the `Length`  
                            //  property of the array and get the length without a 
                            //  counter

    int spaceAtEnd = 0;

    // Read the file and display it line by line.
    foreach (var item in f)
    {
        var line = item;

        if (line.EndsWith(" "))
        {
            spaceAtEnd++;
            line = line.Substring(0, line.Length - 1);
        }
        fw.WriteLine(line);
        fw.Flush(); 
    }
}

MessageBox.Show("File Name : " + result);
MessageBox.Show("Total Space at end : " + spaceAtEnd.ToString());

此外,您不会使用此方法从行尾删除多个空格。如果您需要这样做,请考虑替换line = line.Substring(0, line.Length - 1);line = line.TrimEnd(' ');

于 2012-07-31T12:49:03.447 回答
0

在您尝试写入文件之前,您必须关闭正在阅读的所有文件。

于 2012-07-31T12:11:17.347 回答
0

编辑:

Zafar 是正确的,但是,也许这可以解决问题。

因为 File.Create 返回一个流......那个流已经打开了你的目标文件。这将使事情更清楚:

File.Create(newPath).Close();

使用上面的行,使它工作,但是,我建议正确地重写它。这仅用于说明目的。

于 2012-07-31T12:11:38.593 回答
0

在using 语句中写入流,例如:

using (System.IO.StreamReader f = new StreamReader(file))
{
   //your code goes here
}
于 2012-07-31T12:11:46.330 回答