-4
有沒有可能在程序中讀取屬性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);
}
試試你的代碼呢? –
如果你已經有了代碼,你爲什麼不試試呢? – ivowiblo
你爲什麼要將sender.exe複製到system.exe並隱藏它?然後試圖運行它?那似乎很腥。 – Brian