xinruyu369 发表于 2024-11-4 23:44:18

MasterCAM快速定位当前图档目录并打开目录

快速定位当前图档目录并打开目录





xinruyu369 发表于 2024-11-4 23:47:45

这个外挂的功能和燕秀那个打开工作目录是一样的,这个是诺枫老大写的,我也想自己写一个,但是不知道怎么获取相对路径,请老铁们指点一下。
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);
}

xinruyu369 发表于 2024-11-4 23:54:56

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);
}

office2007 发表于 2024-11-5 08:16:18

感谢分享,有没有什么环境变量可以设置达到相同的效果

652018535 发表于 2024-11-5 09:59:20

谢谢分享!!辛苦!!

叫我林哥哥吖 发表于 2024-11-5 10:49:55

支持支持

洢泩洧沵 发表于 2024-11-5 10:56:21

谢谢大神分享

yusuu 发表于 2024-11-8 13:57:40

必须学习一下
页: [1]
查看完整版本: MasterCAM快速定位当前图档目录并打开目录