13/03/25 23:42:54.33 L96bQ82DP
>>874
スレリンク(software板:540番)
の
540 名前:名無しさん@お腹いっぱい。[sage] 投稿日:2012/03/05(月) 18:05:51.05 ID:bn69zK1w0
Script:JScript
var fs = new ActiveXObject("Scripting.FileSystemObject");
var cts = WScript.ToolFolder('%Current%');
var temptbl = new Array();
var path;
for(var i = 0; i < cts.Count; ++i) {
path = cts.Item(i).Path.replace(/\"/g, '');
if ( path in temptbl || !(fs.FileExists(path) || fs.FolderExists(path)) )
cts.Delete(i--);
else
temptbl[path] = 1;
}
このへんとか