gpt4 book ai didi

c# - File.CreateText - 拒绝访问

转载 作者:行者123 更新时间:2023-12-04 15:06:49 26 4
gpt4 key购买 nike

我最近花了一段时间试图弄清楚让这个语句起作用需要什么权限:

if (!File.Exists(path)) 
{
// Create a file to write to.
using (StreamWriter sw = File.CreateText(path))
{
sw.WriteLine("Hello");
sw.WriteLine("And");
sw.WriteLine("Welcome");
}
}

我最终拥有“每个人”的“特殊权限”,这应该可以解决问题。可悲的是它没有,它实际上可能是一个错误?

以下工作:
if (!File.Exists(_logFilePath))
{
using (var fs = File.Create(_logFilePath))
{
using (var sw = new StreamWriter(fs))
{
sw.WriteLine("Hello");
sw.WriteLine("And");
sw.WriteLine("Welcome");
}
}
}

理论上相同(我认为),但我无法让第一个工作。

最佳答案

我认为路径 变量错误。
确保您还输入了 文件名在路径中。

关于c# - File.CreateText - 拒绝访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20487918/

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