我试图在c#中创建一个文件夹。我的程序有权限,它作为管理员运行仍然会引发异常,不知道该怎么做......
这是代码
try
{
Directory.CreateDirectory("C:\\CON");
}
catch(Exception ex)
{
}
Exception message is Could not find a part of the path 'C:\'.