gpt4 book ai didi

c# - 程序运行时创建文件后目录被锁定

转载 作者:行者123 更新时间:2023-11-30 13:19:44 26 4
gpt4 key购买 nike

在目录中创建文件后,只要创建文件的程序还在运行,目录就会被锁定。有什么办法可以解除锁定吗?稍后我需要重命名目录几行,我总是得到一个 IOException 说“访问路径“...”被拒绝”。

Directory.CreateDirectory(dstPath);
File.Copy(srcPath + "\\File1.txt", dstPath + "\\File1.txt"); // no lock yet
File.Create(dstPath + "\\" + "File2.txt"); // causes lock

最佳答案

File.Create(string path) 创建文件并保持流打开。

您需要执行以下操作:

Directory.CreateDirectory(dstPath);
File.Copy(srcPath + "\\File1.txt", dstPath + "\\File1.txt");
using (var stream = File.Create(dstPath + "\\" + "File2.txt"))
{
//you can write to the file here
}

using 语句向您保证流将被关闭并且文件的锁将被释放。

希望对你有帮助

关于c# - 程序运行时创建文件后目录被锁定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16105987/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com