最佳答案
我检查文件是否存在
if(!File.Exists(myPath))
{
File.Create(myPath);
}
但是,当我用这个新创建的文件创建 StreamReader
时,我得到一个错误,说
进程无法访问文件“[ my file path here ]”,因为它正被另一个进程使用。
没有一个 File.Close(myPath)
,我可以调用,以便它被创建后关闭,所以我如何释放这个资源,以便我可以打开它以后在我的程序?