gpt4 book ai didi

c# - File.WriteAllText 和并发访问

转载 作者:可可西里 更新时间:2023-11-01 08:07:10 27 4
gpt4 key购买 nike

假设我正在使用 File.WriteAllText 将一个很长的字符串写入一个文件,而另一个线程或进程正在尝试读取同一个文件。它会抛出任何异常吗?换句话说,File.WriteAllText 方法使用的 FileShare 参数是什么?它没有写在文档中!

最佳答案

这是 .net Framework 4.0 的源代码。显然使用了在内部使用 FileShare.Read 的 StreamWriter。

    [SecuritySafeCritical]
public static void WriteAllText(string path, string contents)
{
if (path == null)
{
throw new ArgumentNullException("path");
}
if (path.Length == 0)
{
throw new ArgumentException(Environment.GetResourceString("Argument_EmptyPath"));
}
InternalWriteAllText(path, contents, StreamWriter.UTF8NoBOM);
}


private static void InternalWriteAllText(string path, string contents, Encoding encoding)
{
using (StreamWriter writer = new StreamWriter(path, false, encoding))
{
writer.Write(contents);
}
}

这是为 StreamWriter 创建底层流的代码。

private static Stream CreateFile(string path, bool append)
{
return new FileStream(path, append ? FileMode.Append : FileMode.Create, FileAccess.Write, FileShare.Read, 0x1000, FileOptions.SequentialScan);
}

关于c# - File.WriteAllText 和并发访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6805757/

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