MasterCAM快速定位当前图档目录并打开目录
快速定位当前图档目录并打开目录这个外挂的功能和燕秀那个打开工作目录是一样的,这个是诺枫老大写的,我也想自己写一个,但是不知道怎么获取相对路径,请老铁们指点一下。
using System;
using System.Diagnostics;
var currentFile = Mastercam.IO.FileManager;
if (currentFile!= null)
{
string currentFilePath = currentFile.Path;
string currentFolder = Path.GetDirectoryName(currentFilePath);
Process.Start("explorer.exe", currentFolder);
} using System;
using System.Diagnostics;
var currentFile = Mastercam.IO.FileManager(重点 应该 是在这里我需要夹什么语句?各位老铁提示一下?);
if (currentFile!= null)
{
string currentFilePath = currentFile.Path;
string currentFolder = Path.GetDirectoryName(currentFilePath);
Process.Start("explorer.exe", currentFolder);
} 感谢分享,有没有什么环境变量可以设置达到相同的效果 谢谢分享!!辛苦!! 支持支持 谢谢大神分享 必须学习一下
页:
[1]