1、获取文件的后缀名:
string hou = Path.GetExtension("wang.txt");//hou=".txt";引用using System.IO;注意“Path”的大写
2、Process进程
1 Process.Start("notepad");//用类名打开记事本,属于静态函数 2 3 //封装我们要打开的文件,但是并不去打开这个文件 4 ProcessStartInfo psi = new ProcessStartInfo(FilePath+@"\"+FileName);//文件路径和文件名称 5 6 //创建进程对象 7 Process p = new Process(); 8 9 //告诉进程要打开的文件信息 10 p.StartInfo = psi; 11 12 //启动进程,调用start函数 13 p.Start();//用实例打开文件,数据非静态函 结束进程:p.kill();
完!
时间: 2024-10-26 03:19:27