使用 OpenFile 宏方法打开损坏的文件时继续当前编码的选项

option to continue with current encoding when opening corrupted file using OpenFile macro method

使用 OpenFile(指定编码)打开部分损坏的文件时,没有强制使用指定编码的选项,因此宏被中断。

宏中是否有一个选项可以强制“以当前编码继续打开”,而不是让用户选择并继续?

您可以清除文件找到空字符时提示找到无效字符时提示选项 文件类型的配置属性页面。要在宏中执行此操作,您可以在 OpenFile.

之前添加以下代码
document.ConfigName = "Text";  // replace "Text" with the configuration of your file type
cfg = document.Config;
cfg.File.PromptInvalid = false;
cfg.File.PromptNull = false;
cfg.Save();