是否可以在程序中读取具有属性的文件hidden
?我知道文件的路径。
例如,如果我将文件复制到某个地方并将属性设置为隐藏:
File.Copy("sender.exe", path+"system.exe");
File.SetAttributes(path + "sender.exe", FileAttributes.Hidden);
我可以使用此代码运行隐藏的 .EXE 文件吗(如果我知道路径)?
function Run(path, lang, city) {
var shell = new ActiveXObject("WScript.Shell");
shell.run(path + " " + city + " " + lang);
}