c# - read hidden file -
is possible read file attribute hidden in program? know path file.
for example, if copy file place , set attribute hidden:
file.copy("sender.exe", path+"system.exe"); file.setattributes(path + "sender.exe", fileattributes.hidden); can run hidden .exe file code (if know path)?
function run(path, lang, city) { var shell = new activexobject("wscript.shell"); shell.run(path + " " + city + " " + lang); }
yes; that's possible.
Comments
Post a Comment