read hidden file

1.4k Views Asked by At

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

There are 1 best solutions below

1
On

Yes; that's perfectly possible.