net C# 打开指定的文件或者文件夹

1、直接打开指定的文件

System.Diagnostics.Process.Start(v_OpenFilePath);

2、直接打开目录

string v_OpenFolderPath = @"目录路径"; 
System.Diagnostics.Process.Start("explorer.exe", v_OpenFolderPath);
posted on 2019-03-21 10:03  前端一丁  阅读(18933)  评论(3编辑  收藏  举报