Page 1 of 1
Create a folder on Windows
Posted: Sun Mar 07, 2021 12:54 pm
by trags3
Trying to create folder in the "Documents" folder on a Windows 10 computer.
I have done this many times on iPhone but something is different on Windows.
Help Please
Tom
Re: Create a folder on Windows
Posted: Sun Mar 07, 2021 1:11 pm
by bogs
At least 2 ways come to mind, about the same amount of typing (give or take a few characters).
Method 1 -- set the default folder, then make the new folder...
Code: Select all
set the defaultFolder to specialFolderPath("Documents")
new folder "myNewFolder" -- just use the name, don't add a slash
Method 2 -- put it all on one line...
Code: Select all
new folder (specialFolderPath("Documents") & "/myNewFolder") -- put a slash before the name of your new folder...
Re: Create a folder on Windows
Posted: Sun Mar 07, 2021 1:18 pm
by trags3
Thanks Bogs!
You have come to my rescue AGAIN!
Tom
Re: Create a folder on Windows
Posted: Sun Mar 07, 2021 1:21 pm
by bogs
Heh, no problem, now if I could only save me from myself...
