Page 1 of 1

MOVE FOLDERS

Posted: Mon Nov 25, 2024 9:26 pm
by luzimarsorgi
Hi, it´s me again.rs. Sorry. FFastrans can move folders? If yes, how? Tks.

Re: MOVE FOLDERS

Posted: Mon Nov 25, 2024 9:55 pm
by emcodem
Hello, no need to say sorry at all, we love questions, it is the main functionality of the forum (besides getting bugreports) :D

There is no way that i am aware of to do it with some fancy processor but you can simply use a commandline proc and execute a move command

Code: Select all

cmd /C "move "<source_dir>" "<destination_dir>""
That will be the simple part. The question is, how do you get out what is the source dir in your workflow?

Re: MOVE FOLDERS

Posted: Tue Nov 26, 2024 2:44 pm
by luzimarsorgi
Very good, tank you.