Clone Folder Whitespace Issue

I have a "Clone Folder" button I made which clones a folder into the next lister. I got the code from here:

[Set FOCUS=Toggle > CreateFolder FROMCLIPBOARD - not working)

which is:

CreateFolder {destpath$}{file$}

The only problem is that if I have a folder with any whitespaces, the code breaks. So if I'm cloning a folder called "Test Folder" to a destination folder called "Disc 01", I get an error and the retry window has this string:

Disc "01"\Test Folder

Does anyone know how to fix this code so the code can clone a folder with whitespaces in the name?

Change it to this:

@nofilenamequoting CreateFolder "{destpath$}\{file$}"

That works! Thank you!