codice:
<%
sub extractZipFile(xExePath, xSourcePath,xdest)
Set Shell = server.CreateObject("WScript.Shell")
theCMD = "cmd / c " & xexePath & " x " & xSourcePath
response.write thecmd
Set oExec = Shell.Exec(theCMD)
Set oExec = nothing
Set Shell = nothing
End sub
exePath = server.MapPath("meteo/unrar.exe")
sourcePath = server.MapPath("/meteo/bordo.rar")
destpath = server.MapPath("/meteo/")
call extractZipFile(ExePath, sourcePath,destPath)
response.write err.description
%>
praticamente il path è corretto
non mi ritorna più l'errore precedente...
anzi nessun errore...
mi piacerebbe capire come fare il debug della shell...