如何授予使用C#创建目录的权限

问题描述

这是我的代码

curl http://localhost/dev/api/

错误

未处理的异常:System.UnauthorizedAccessException:拒绝访问访问路径'C:\ Users \“程序的目录”'。

解决方法

问题是我没有给文件起一个名字

using (StreamWriter sw = File.CreateText(Directory.GetCurrentDirectory() + @"\ExtractedContent\file.txt(that's the solution)"))
{
    sw.WriteLine($"TITLE: {extractedTitle[0]}");
    sw.WriteLine("CONTENT:");
    sw.Write(extractedContent[0]);
}