Action : Execute a command

Utilization

A command allow you to execute a command like in CMD (command prompt).

Some commands (only on Windows)

Create a folder

Use this command for create a folder.

mkdir ”path\foldername

Don't forget quotation marks.

They are important if the path or the folder's name contains a space.

Rename a folder

Use this command for rename a folder.

move ”FolderPath\foldername” ”FolderPath\FolderNewName

In the 2nd parameter, you have to rewrite exactly the Folder's path.

Delete a folder

rmdir /S /Q ”FolderPath\FolderName

With ”/S”, the command delete all files and sub-folders in the folder.

With ”/Q”, the command don't ask you for a confirmation.