I am trying to execute the following command in Inno Setup:
move "MyFolder\Extra\Tesseract-OCR" "MyDestFolder"
I tried using:
Filename: "{cmd}"; Parameters: 'move ' + "MyFolder\Extra\Tesseract-OCR" + ' ' + "MyDestFolder"';
and
Filename: "{cmd}"; Parameters: 'move ' + AddQuotes(MyFolder\Extra\Tesseract-OCR) + ' ' + AddQuotes(MyDestFolder)';
But none of them worked.
Which approach should I follow?