C# 打开文件或打开文件夹

直接打开指定的文件

System.Diagnostics.Process.Start(v_OpenFilePath); 

直接打开目录

string v_OpenFolderPath = @"目录路径"; 
System.Diagnostics.Process.Start("explorer.exe", v_OpenFolderPath);  

System.Diagnostics.Process.Start(); 能做什么呢?它主要有以下几个功能:

1、打开某个链接网址(弹窗)。

2、定位打开某个文件目录。

3、打开系统特殊文件夹,如“控制面板”等。

那么它是怎么实现这几个功能的呢?在讲应用前,我们先来看看Process.Star()的构造方法。

 

名称说明
Process.Start ()启动(或重用)此 Process 组件的 StartInfo 属性指定的进程资源,并将其与该组件关联。
Process.Start (ProcessStartInfo)启动由包含进程启动信息(例如,要启动的进程的文件名)的参数指定的进程资源,并将该资源与新的 Process 组件关联。
Process.Start (String)通过指定文档或应用程序文件的名称来启动进程资源,并将资源与新的 Process 组件关联。
Process.Start (String, String)通过指定应用程序的名称和一组命令行参数来启动一个进程资源,并将该资源与新的 Process 组件相关联。
Process.Start (String, String, SecureString, String)通过指定应用程序的名称、用户名、密码和域来启动一个进程资源,并将该资源与新的 Process 组件关联起来。
Process.Start (String, String, String, SecureString, String)通过指定应用程序的名称和一组命令行参数、用户名、密码和域来启动一个进程资源,并将该资源与新的 Process 组件关联起来。

 

System.Diagnostics.Process.Start("notepad.exe");        -- 打开记事本

 

System.Diagnostics.Process.Start("calc.exe ");                -- 打开计算器

 

System.Diagnostics.Process.Start("regedit.exe ");           -- 打开注册表

 

System.Diagnostics.Process.Start("mspaint.exe ");        -- 打开画图板

 

System.Diagnostics.Process.Start("write.exe ");              -- 打开写字板

 

System.Diagnostics.Process.Start("mplayer2.exe ");        --打开播放器

 

System.Diagnostics.Process.Start("taskmgr.exe ");          --打开任务管理器

 

System.Diagnostics.Process.Start("eventvwr.exe ");          --打开事件查看器

 

System.Diagnostics.Process.Start("winmsd.exe ");           --打开系统信息

 

System.Diagnostics.Process.Start("winver.exe ");              --打开Windows版本信息

 

System.Diagnostics.Process.Start("mailto: "+ address);    -- 发邮件

 


 

shutdown.exe:

 

参数:-s 关机   -r重启   -f强行   -t 时间    -a 取消关机   -l 注销    -i 显示用户界面

 

System.Diagnostics.Process.Start("shutdown.exe","-r");              -- 关闭并重启计算机

 

System.Diagnostics.Process.Start("shutdown.exe","-s -f");          -- 关闭计算机

 

System.Diagnostics.Process.Start("shutdown.exe","-s -f 30");     -- 30s后关闭计算机

 

System.Diagnostics.Process.Start("shutdown.exe","-l");               --注销计算机

 

System.Diagnostics.Process.Start("shutdown.exe","-a");              --撤销关闭计算机

 

转载于:https://www.cnblogs.com/WarBlog/p/5826595.html

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值