在c#中从OpenFileDialog中选择文件上运行CMD命令

本文关键字:运行 CMD 命令 文件 选择 中从 OpenFileDialog | 更新日期: 2023-09-27 18:18:15

我对c#很陌生,因为我需要为我的老板做一个简单的项目。

我想要收到的是:

  1. 获取用户要解密的文件(OpenFileDialog)。
  2. 获取用户选择的文件作为密钥。
  3. 使用openssl enc -d -aes-256-cbc -in userSelectedFilesToDecrypt命令运行CMD。enc -out UserSelectedFilesAlreadyDecrypted.mp3 -pass file:./user_selected_key_file.bin

我已有的:

  • OpenFileDialog供用户在两个选项上使用。和2。)

我需要什么:

  • 输入/输出代码

下面是我当前的代码:

{
    Process decrypt = new Process();
    string processExecutable = @"C:'Windows'System32'cmd.exe";
    if (!File.Exists(processExecutable))
        throw new ApplicationException(string.Format("The executable file '"{0}'" does not exist.", processExecutable));
    decrypt.StartInfo.FileName = processExecutable;
    decrypt.StartInfo.Arguments = "/C openssl enc -d -aes-256-cbc -in FILES_IN.enc -out FILES_OUT.mp3 -pass file:./KEY_FILE.bin";
    decrypt.StartInfo.UseShellExecute = false;
    decrypt.StartInfo.RedirectStandardOutput = true;
    decrypt.StartInfo.RedirectStandardError = true;
    decrypt.StartInfo.RedirectStandardInput = true;
    decrypt.StartInfo.CreateNoWindow = true;
    decrypt.Start();
    decrypt.BeginOutputReadLine();
    decrypt.BeginErrorReadLine();
    decrypt.WaitForExit();
    decrypt.Close();
}

我应该如何修改它,以便能够在用户选择的文件上使用它?谢谢你的帮助。

在c#中从OpenFileDialog中选择文件上运行CMD命令

        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            var ofd = new OpenFileDialog();
            ofd.Multiselect = true;
            DialogResult dr = ofd.ShowDialog();
            if (dr == System.Windows.Forms.DialogResult.OK)
            {
                foreach (String file in ofd.FileNames)
                {
                    listView1.Items.Add(file);
                    getCommandlineResult(file, "path1", "path2");
                }
            }
        }
        public string getCommandlineResult(string userSelectedFilesToDecrypt, string UserSelectedFilesAlreadyDecrypted,
            string user_selected_key_file)
        {
            string macAddress = string.Empty;
            System.Diagnostics.Process pProcess = new System.Diagnostics.Process();
            pProcess.StartInfo.FileName = @"C:'Windows'System32'cmd.exe";
            pProcess.StartInfo.Arguments = "openssl enc - d - aes - 256 - cbc -in " + userSelectedFilesToDecrypt + ".enc -out " +
                                           UserSelectedFilesAlreadyDecrypted + ".mp3 - pass file:./ " +
                                           user_selected_key_file + ".bin";
            pProcess.StartInfo.UseShellExecute = false;
            pProcess.StartInfo.RedirectStandardOutput = true;
            pProcess.StartInfo.CreateNoWindow = true; //hide window
            pProcess.Start();
            string strOutput = pProcess.StandardOutput.ReadToEnd();
            return strOutput;
        }

您必须自己调整代码,因为我没有安装openssl,但这必须帮助您在正确的方向。