Create Folder dialog on FTP

I wanted to have a button that could create a folder on my ftp with the same helpful dialog as the Opus Create Folder dialog. I want the features it has like multiple folders and using syntax that can create nested folder then moving in to them. I came up with this.

CreateFolder 
SetAttr CHMOD 777 *

It worked fine when creating a single folder. The problem is when I tried to use a feature that is possible with a standard (Windows) folder I ended up with this (pic). I cannot delete or change the name of the folder name it created. Deleting or changing the name is not what I need help with I know how to do that via my web server (wanted to state what it creates). The important part I how in the code to create the folder is the CHMOD 777, this is what I need to add to most folders I create. Is this possible with the helpful Opus Create Folder dialog? If so what is the syntax? Thanks

I'm not sure FTP lets you create multiple folder levels. It definitely isn't working so we either need to block it in the dialog or make it work. Which will depend on what we find when looking into it more.

To clean up that folder, do as follows when viewing the location in your screenshot:

  • Click somewhere in the file display and type a > to open a command field at the bottom of the window.

  • After the >, type the command CLI QUICKFTPCMD and push return.

  • The command field will change slightly, waiting for an FTP command. Type in this command:
    rmd Apple\170926HighSierraBoot
    and push return.

  • Push F5 to refresh the listing, and the folder should now be gone.

If I use the normal (default) Create Folder dialog it does allow me to make multiple folders on my ftp. But as I see now it does NOT let me create folders inside folders. Thanks