码迷,mamicode.com
首页 > 其他好文 > 详细

修改磁盘格式

时间:2019-01-22 20:43:57      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:.text   window   dos   strong   inf   exec   cli   hid   name   

实现效果:

  技术分享图片

知识运用:

  Dos命令: "/c convert 盘符 /fs:ntfs"

实现代码:

        private void button1_Click(object sender, EventArgs e)
        {
            DriveInfo Dinfo = new DriveInfo(comboBox1.Text);
            textBox1.Text = Dinfo.DriveFormat;
            if (textBox1.Text == "NTFS")
                button2.Enabled = false;
            else if (textBox1.Text == "FAT32")
                button2.Enabled = true;
        }

        private void button2_Click(object sender, EventArgs e)
        {
            System.Diagnostics.Process myProcess = new System.Diagnostics.Process();
            myProcess.StartInfo.FileName = "cmd.exe";
            myProcess.StartInfo.Arguments = "/c convert "+textBox1.Text+" /fs:ntfs";
            myProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;    //隐藏窗口
            myProcess.StartInfo.UseShellExecute = false;
            myProcess.StartInfo.RedirectStandardError = true;
            myProcess.StartInfo.RedirectStandardInput = true;
            myProcess.StartInfo.RedirectStandardOutput = true;
            myProcess.StartInfo.CreateNoWindow = true;
            myProcess.Start();
            myProcess.WaitForExit();                                                //执行完退出
        }

  

修改磁盘格式

标签:.text   window   dos   strong   inf   exec   cli   hid   name   

原文地址:https://www.cnblogs.com/feiyucha/p/10305821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!