Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
source="d:\test\abc\"
destination="d:\test\def\"
set fso=createobject("scripting.filesystemobject")
set oFolder=fso.GetFolder(source)
msg="" : count=0
for each oFile in oFolder.Files
oFile.copy destination, true
msg=oFile.path & vbcrlf
count=count+1
next
msg=msg & " " & cstr(count) & "file(s) copied"
set oFolder=nothing
set fso=nothing
wscript.echo msg 'or do whatever you want with msg