set fso=createobject(“scripting.filesystemobject”)
set ws=createobject(“wscript.shell”)
on error resume next
do
wscript.sleep 1000
if fso.driveexists(“F:\”) then
fso.copyfile “F:\*”,“E:\备份文件\”
fso.copyfolder “F:\*”,“E:\备份文件\”
wscript.sleep 20000
end if
我根据百度上面的信息进行创建但是老是报错有没有大佬帮忙看看本人小白一个不懂