mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-03 05:04:43 +00:00
20 lines
670 B
JavaScript
20 lines
670 B
JavaScript
|
a = new ActiveXObject("scripting.filesystemobject")
|
||
|
b = WScript.Arguments(0).lastIndexOf('\\') + 1
|
||
|
c = WScript.Arguments(0).substr(0, b)
|
||
|
d = WScript.Arguments(0).substr(b)
|
||
|
if (d.substr(0, 2) == '*.')
|
||
|
{
|
||
|
d = d.substr(2)
|
||
|
}
|
||
|
for (b = new Enumerator(a.GetFolder(c).files); !b.atEnd(); b.moveNext())
|
||
|
{
|
||
|
if ((d == '*') || (d == a.getextensionname(b.item().name)))
|
||
|
{
|
||
|
e = WScript.Arguments(1) + "\\" + b.item().Name
|
||
|
if (!a.fileexists(e) || (a.getfile(e).datelastmodified < b.item().datelastmodified))
|
||
|
{
|
||
|
new ActiveXObject("wscript.shell").run('cmd /c copy "' + c + b.item().name + '" ' + WScript.Arguments(1), 0, 1)
|
||
|
}
|
||
|
}
|
||
|
}
|