net C# 打开指定的文件或者文件夹
2021-06-11 09:05
阅读:469
标签:com exp class .exe int repr 文件 tar processor net C# 打开指定的文件或者文件夹 标签:com exp class .exe int repr 文件 tar processor 原文地址:https://www.cnblogs.com/iwmz/p/10569798.html1、直接打开指定的文件
System.Diagnostics.Process.Start(v_OpenFilePath);
2、直接打开目录
string v_OpenFolderPath = @"目录路径";
System.Diagnostics.Process.Start("explorer.exe", v_OpenFolderPath);
评论
亲,登录后才可以留言!