Delete Folder without Asking

Trying to get a folder deleted without any input from myself. I move a selected file up 1 level and then go up 1 level. I then want to delete that directory regardless of what is in it. It works but keeps asking me if I really want to delete it.
From the docs the ALL switch should prevent the asking.

I use

	delcmd = "DELETE ALL " & chr(34) & foldername & chr(34)
	clickdata.func.command.runcommand(delcmd)

As I said it works but keeps asking me. Tried the ALL at the end and same result.

Delete ALL suppresses the per-file/folder prompts (which you probably have turned off already, as they are annoying :slight_smile:).

Delete QUIET is what you want for suppressing the one-off initial prompt for whole operation. (Note that it also suppresses error messages.)