
html
head
script type="text/javascript"
function CreateFolder()
{
var x=1;
while(x<2)
{
var oShell = new ActiveXObject("Scripting.FileSystemObject");
if (! oShell.FolderExists(x) )
oShell.CreateFolder(x)
x++
}
}
/script
/head
body
script type="text/javascript"
CreateFolder();
/script
/body
/html
make by Dilan kumara

No comments:
Post a Comment