1

以下のコードでは、実行中のアプリケーションから 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:\ などの他のディレクトリにコピーしようとしましたが、常にこの例外メッセージ
が表示されます。

4

1 に答える 1

1

を使用しEnvironment.SystemDirectoryているため、そこに保存しようとしています。ただし、管理者ユーザーで実行している場合でも、特定のシステム フォルダーは保護されています。system32 フォルダーはその 1 つです。プログラムで何かを保存するには、一時的に UAC をオフにする必要がありますが、これはあまり良いことではありません。

これを行う別の/より良い方法を見つけることを強くお勧めします。

于 2012-10-23T15:41:53.383 に答える