Is it possible to read file with attribute hidden
in program? I know the path to file.
For example, if I copy a file to some place and set the attribute hidden:
File.Copy("sender.exe", path+"system.exe");
File.SetAttributes(path + "sender.exe", FileAttributes.Hidden);
Can I run the hidden .EXE file with this code (if I know path)?
function Run(path, lang, city) {
var shell = new ActiveXObject("WScript.Shell");
shell.run(path + " " + city + " " + lang);
}
Yes; that's perfectly possible.