Set variable

hello there...i want to create a move command to move files/folders from source to destination...the thing is that i want a confirmation window to pop up and ask me to confirm the action...i have the following code @set myfile = {file$} @confirm Do you want to move {$myfile} ? |Yes|No Copy MOVE {file}but i get the following result http://img97.imageshack.us/f/dopus.png/...how can i set the right way the variable in order to get the name of the file/folder i want to move in the confirmation box? thanks in advance...

Please have a look in following thread, where this has been discussed:

It´s not possible to include the file name in the @confirm dialogue, except using something like this:

@set X = {dlgstring|Are you sure to move following file?|{file}} Copy MOVE {f}

Only con is, you will only have the first file displayed.