Page 1 of 1

Problem using short path names with Send Keystrokes

Posted: Fri Jun 19, 2026 8:33 am
by pyvorn1600
I'm having trouble using a short DOS-style path in RoboTask's Send Keystrokes action.

The command I'm trying to run is:

cd C:\PROGRA~2\Progress\WS_FTP~1

However, when the task executes, it seems to stop processing at the ~ character and the command ends up looking like:

cd "C:\PROGRA

which results in:

The system cannot find the path specified.

Has anyone else experienced this issue with Send Keystrokes? Is there a way to escape the ~ character, or is there a better method for changing to a directory that contains a short path name?

I'm currently using RoboTask 10.5.

Any suggestions would be appreciated.

Re: Problem using short path names with Send Keystrokes

Posted: Sun Jun 21, 2026 9:59 am
by Oleg
Probably symbol "~" is one of special symbols
Use the string
cd C:\PROGRA+(`)2\Progress\WS_FTP+(`)1
instead of
cd C:\PROGRA~2\Progress\WS_FTP~1

It works