在下面的代码中我试图从正在运行的应用程序中提取一个dll文件并将其保存到System32目录:
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Diagnostics;
using Microsoft.VisualBasic;
using System.Security.Cryptography;
using System.Runtime.InteropServices;
using System.Reflection;
using System.Windows.Forms;
namespace ConsoleApplication1
{
class Program
{
public static void ExtractSaveResource(String filename, String location)
{
// Assembly assembly = Assembly.GetExecutingAssembly();
Assembly a = Assembly.GetExecutingAssembly();
// Stream stream = assembly.GetManifestResourceStream("Installer.Properties.mydll.dll"); // or whatever
// string my_namespace = a.GetName().Name.ToString();
Stream resFilestream = a.GetManifestResourceStream(filename);
if (resFilestream != null)
{
try
{
BinaryReader br = new BinaryReader(resFilestream);
FileStream fs = new FileStream(location, FileMode.Create); // say
BinaryWriter bw = new BinaryWriter(fs);
byte[] ba = new byte[resFilestream.Length];
resFilestream.Read(ba, 0, ba.Length);
bw.Write(ba);
br.Close();
bw.Close();
resFilestream.Close();
}
catch (Exception E) { MessageBox.Show(E.Message); }
}
// this.Close();
}
static void Main(string[] args)
{
string systemDir = Environment.SystemDirectory;
ExtractSaveResource("MySql.Data.dll",systemDir);
}
}
}
异常消息:
Access to the path C:\Windows\System32 is denied
我试图将文件复制到其他目录,如D:\或X:\,但我总是收到此异常消息
怎么能解决这个问题?
答案 0 :(得分:1)
你正在使用Environment.SystemDirectory
,这就是为什么它要在那里攒钱。但是,即使您在管理员用户下运行,某些系统文件夹也会受到保护。 system32文件夹就是其中之一。您必须暂时关闭UAC才能以编程方式保存,这不是一件好事。
我强烈建议你找到一种不同/更好的方法来做到这一点。