Ok so I have tried numerous ways to create a folder on the drive with no luck…every time I use the examples that people have posted it doesn’t work. I have tried your above examples but I still have no luck. this is what I have tried
myfolder = new File(“c:\\Newfolder\\”);
didn’t work so I found a command in the java script toolkit and tried this
Folder.create(“c:\\Newfolder\\”);
this gives the error that Folder.create is undefined so I tried this
myfolder = new File(“c:\\Newfolder\\”);
Folder.create(myfolder);
still no luck
also
myfolder = Folder.create(“c:\\Newfolder\\”);
some of the examples seem to run without errors but there is no folder created in the directory.
What am I missing.