I haven’t worked on JS for a long time because I’m annoyed by the capitalization in it. In fact, it is similar to vbs, but I think vbs is not widely used after all, haha.
var w=WScript.createObject("wscript.shell" )
w.popup(showFolders("c:\"))
function showFolders(foldername)
{
var fs,f,fc,s;
s=""
fs=new ActiveXObject("Scripting.FIleSystemObject");
f=fs.GetFolder(foldername);
fc=new Enumerator(f.SubFolders);
for(; !fc.atEnd() ; fc.moveNext())
{s =fc.item();
s ="rn"
}
return(s);
}
Save the file directly as do.js. Generally, js is used for web pages. It is best to save such js as do.jse to ensure that it can run.