为什么不删除测试文件夹中的文件?我怎样才能获得管理员权限?
namespace Delete
{
using System;
using System.Windows.Forms;
using System.IO;
public class Delete
{
public Delete()
{
if (Directory.Exists(@"C:\Program Files (x86)\test\"))
{
string[] filePaths = Directory.GetFiles(@"C:\Program Files (x86)\test\");
foreach (string file in filePaths) { File.Delete(file); }
}
}
}
}
答案 0 :(得分:3)
您需要重新考虑您的策略。
如果要从应用程序中以编程方式添加/删除文件,则应将它们存储在一个单独的位置(不需要管理员权限来提升写入/删除等):
Program Files目录用于随程序一起安装但在安装/更新后不会更改的特定于应用程序的文件(DLL等)。
以下是应用程序的用户数据目录示例:
public static DirectoryInfo ApplicationVersionDirectory()
{
return new DirectoryInfo(System.Windows.Forms.Application.UserAppDataPath);
}
答案 1 :(得分:2)
这是由于UAC。因此,通过右键单击 - >运行您的可执行文件作为管理员“以管理员身份运行”或者如果您想以编程方式执行此操作,请参阅其他帖子,例如Windows 7 and Vista UAC - Programmatically requesting elevation in C#
答案 2 :(得分:0)
要从“Program Files”文件夹中删除文件,您需要以管理员身份启动应用程序。否则,您将无法访问%PROGRAMFILES%。
以下是重新启动当前应用并以管理员身份运行的示例代码:
ProcessStartInfo proc = new ProcessStartInfo();
proc.UseShellExecute = true;
proc.FileName = Application.ExecutablePath;
proc.Verb = "runas";
try
{
Process.Start(proc);
}
catch
{
// The user refused the elevation.
// Do nothing and return directly ...
return;
}
Application.Exit(); // Quit itself