I'm executing remote commands through a Session using Session::command()
But I don't find a way to set the current directory for a given command. Even the cd command does not keep the directory changed for subsequent commands.
I am looking for something like std::process::Command::current_dir() method.
Is there any way to do this ?