Link copiato negli appunti
Come posso aggiungere a folder specifici nuove path?
Un metodo che permette questo è FileSystemObject.CreateFolder.
<%
dim filetest, nuovadir
set filetest =CreateObject("Scripting.FileSystemObject")
nuovadir = filetest.CreateFolder(c:inetpubwwwroot, "nome_directory")
%>