1

アプリケーションを実行すると、ここで最初の「使用」時にこのエラーが発生します。

    public void CreateFile(string filePath)
    {

        //Create File
        string fileLoc = filePath;

        FileStream fs = null;
        if (!File.Exists(fileLoc))
        {
            using (fs = File.Create(fileLoc))
            {

            }
        }

    }

    public void WriteFile(string filePath)
    {
        //Write to File
        string fileLoc = filePath;

        if (File.Exists(fileLoc))
        {
            using (StreamWriter sw = new StreamWriter(fileLoc))
            {
                sw.Write("Some sample text for the file");
            }
        }
    }

そのディレクトリのファイルは以前に開かれて読み取られましたが、読み取り後に StreamReader が閉じられました。このエラーに意味があるかどうかはわかりません。ありがとう。

4

1 に答える 1