author | llornkcor <llornkcor> | 2002-03-20 23:58:17 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-03-20 23:58:17 (UTC) |
commit | e8f15a98c611b0c6030e8210672b249b42107526 (patch) (side-by-side diff) | |
tree | b36e786dedd13a959cbae0cf6ee934a7fd373047 | |
parent | a766295804d76f06a7e47b1d5e02dd5a59676c7d (diff) | |
download | opie-e8f15a98c611b0c6030e8210672b249b42107526.zip opie-e8f15a98c611b0c6030e8210672b249b42107526.tar.gz opie-e8f15a98c611b0c6030e8210672b249b42107526.tar.bz2 |
fixed problem with remote download
-rw-r--r-- | noncore/net/opieftp/opieftp.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp index f1b159c..6e9dc67 100644 --- a/noncore/net/opieftp/opieftp.cpp +++ b/noncore/net/opieftp/opieftp.cpp @@ -325,25 +325,28 @@ void OpieFtp::nullifyCallBack() FtpOptions(FTPLIB_CALLBACKBYTES, NULL, conn); } void OpieFtp::remoteDownload() { int fsz; QCopEnvelope ( "QPE/System", "busy()" ); qApp->processEvents(); QString strItem = Remote_View->currentItem()->text(0); // strItem=strItem.right(strItem.length()-1); - QString localFile = currentDir.canonicalPath()+strItem; + QString localFile = currentDir.canonicalPath(); + if(localFile.right(1).find("/",0,TRUE) == -1) + localFile += "/"; + localFile += strItem; // QString localFile = currentDir.canonicalPath()+"/"+strItem; QString remoteFile= currentRemoteDir+strItem; if (!FtpSize( remoteFile.latin1(), &fsz, FTPLIB_ASCII, conn)) fsz = 0; QString temp; temp.sprintf( remoteFile+" "+" %dkb", fsz); ProgressBar->setTotalSteps(fsz); FtpOptions(FTPLIB_CALLBACK, (long) log_progress, conn); FtpOptions(FTPLIB_IDLETIME, (long) 1000, conn); FtpOptions(FTPLIB_CALLBACKARG, (long) &fsz, conn); FtpOptions(FTPLIB_CALLBACKBYTES, (long) fsz/10, conn); |