Hi,
qt ftp example does
Qt Code:
  1. ftp->cd("qt");
To copy to clipboard, switch view to plain text mode 
to change the working directory.
The question is: how to change to deeper folders?

Assume that the server tree is /folder/inner/deeper and from "folder" I have to change to "deeper", how to achieve it?

(I tried
Qt Code:
  1. ftp->cd("inner/deeper");
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. ftp->cd("inner");
  2. ftp->cd("deeper");
To copy to clipboard, switch view to plain text mode 
but the first says that the folder doesn't exist, while the second says that "deeper" doesn't exists...)

Thank you for your attention