PDA

View Full Version : RAW Move command


MidKnight
06-27-2016, 09:02 PM
This command works, but when adding the /enqueuer before the working cmd, it doesn't enque it, just excucutes it. anyway help please?

/enqueue
{
RNFR %f
RNTO /another.directoy/dir.name/%f
}

bigstar
06-28-2016, 02:18 PM
You need to use /enqueue before the individual commands.

Such as:
{
/enqueue RNFR %f
/enqueue RNTO /another.directoy/dir.name/%f
}But I would recommend using the /ren command instead of RNFR/RNTO, plus this way you eliminate the need for using a command block { }


/enqueue /ren "%f" "/another.directoy/dir.name/%f"

MidKnight
06-28-2016, 07:38 PM
awesome, thanks mate ;)