PDA

View Full Version : QFtp: entering deep folder (cd)



Raccoon29
13th May 2008, 10:13
Hi,
qt ftp example does

ftp->cd("qt");
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

ftp->cd("inner/deeper");

ftp->cd("inner");
ftp->cd("deeper");
but the first says that the folder doesn't exist, while the second says that "deeper" doesn't exists...)

Thank you for your attention

Raccoon29
13th May 2008, 10:28
:o
Ok, ok... all is ok.
I messed with ftp accounts...

Anyway in this way cd works like a charm :)

PS: I would have deleted the thread, but I found no the command :p