c#中如何打开一个文件

2024-12-22 20:37:09
推荐回答(1个)
回答1:

System.Diagnostics.Process.Start(启动文件路径, 参数);
System.Diagnostics.Process.Start("notepad", "c:\\1.txt");
启动指定对象,并应用参数

System.Diagnostics.Process.Start(启动文件路径);
System.Diagnostics.Process.Start("c:\\1.txt");
启动指定对象