resolved bug with space in filename
This commit is contained in:
parent
67fb0a4b7e
commit
74e2283aa0
@ -74,7 +74,7 @@ void MainWindow::download()
|
||||
|
||||
param << "--port" << QString::number(this->downloading.port).trimmed();
|
||||
param << "-aXP";
|
||||
param << "[" + server + "]::" + this->downloading.service.trimmed() + "/" + this->downloading.path.trimmed() << this->downloading.savePath.trimmed() + "/";
|
||||
param << "\"[" + server + "]::" + this->downloading.service.trimmed() + "/" + preparePath(this->downloading.path) << preparePath(this->downloading.savePath) + "/";
|
||||
|
||||
info(DEBUGMACRO, cmd + " " + param.join(" "));
|
||||
|
||||
|
@ -486,7 +486,7 @@ bool MainWindow::testServerPresence(QString service, bool askPassword)
|
||||
{
|
||||
param << "-" + QString::number(this->connexion.ipversion);
|
||||
}
|
||||
param << "--contimeout=10" << "-nq" << "--port=" + QString::number(this->connexion.port) << + "[" + this->connexion.server + "]::" + service;
|
||||
param << "--contimeout=10" << "-nq" << "--port=" + QString::number(this->connexion.port) << + "[" + this->connexion.server + "]::" + preparePath(service);
|
||||
myProcess = new QProcess(this);
|
||||
myProcess->setProcessChannelMode(QProcess::MergedChannels);
|
||||
myProcess->start(cmd, param);
|
||||
@ -623,10 +623,11 @@ bool MainWindow::scanDir(Connexion * connexion, QTreeWidgetItem *parent, QString
|
||||
static uint looping;
|
||||
QStringList dirs;
|
||||
QString server = connexion->server;
|
||||
bool ret = false;
|
||||
|
||||
info(DEBUGMACRO, "scandir() => connect to rsync server to get list of files");
|
||||
|
||||
QGuiApplication::setOverrideCursor(Qt::WaitCursor);
|
||||
ui->listWidget->setCursor(Qt::WaitCursor);
|
||||
|
||||
myProcess = new QProcess(this);
|
||||
myProcess->setProcessChannelMode(QProcess::MergedChannels);
|
||||
@ -656,7 +657,7 @@ bool MainWindow::scanDir(Connexion * connexion, QTreeWidgetItem *parent, QString
|
||||
user = "anonymous@";
|
||||
env.insert("RSYNC_PASSWORD", "anonymous"); // Add an environment variable
|
||||
}
|
||||
param << "--contimeout=20" << "--port=" + QString::number(connexion->port) << user + "[" + server + "]::" + path;
|
||||
param << "--contimeout=20" << "--port=" + QString::number(connexion->port) << user + "[" + server + "]::" + preparePath(path) ;
|
||||
|
||||
info(DEBUGMACRO, cmd + " " + param.join(" "));
|
||||
|
||||
@ -757,12 +758,12 @@ bool MainWindow::scanDir(Connexion * connexion, QTreeWidgetItem *parent, QString
|
||||
}while(readOk);
|
||||
// buffer empty go to waiting new datas
|
||||
|
||||
testRsyncReturn(this, myProcess);
|
||||
ret = testRsyncReturn(this, myProcess);
|
||||
myProcess->close();
|
||||
}
|
||||
ui->listWidget->setCursor(Qt::ArrowCursor);
|
||||
|
||||
return false;
|
||||
return ret;
|
||||
}
|
||||
|
||||
// validate address server
|
||||
@ -1027,6 +1028,7 @@ void MainWindow::on_treeWidget_itemClicked(QTreeWidgetItem *item, bool downloadD
|
||||
QString str;
|
||||
QMessageBox::StandardButton reply;
|
||||
int sizeFromRsync;
|
||||
bool ret = false;
|
||||
|
||||
info(DEBUGMACRO, "on_treeWidget_itemClicked() => Slot activated when a file is clicked in the treeview");
|
||||
|
||||
@ -1151,8 +1153,11 @@ void MainWindow::on_treeWidget_itemClicked(QTreeWidgetItem *item, bool downloadD
|
||||
//if (this->rescan)
|
||||
//{
|
||||
info(DEBUGMACRO, "Re-scanning path: " + this->connexion.service + "/" + path +"/");
|
||||
scanDir(&this->connexion, item, this->connexion.service + "/" + path +"/");
|
||||
item->setExpanded(true);
|
||||
ret = scanDir(&this->connexion, item, this->connexion.service + "/" + path +"/");
|
||||
if(!ret)
|
||||
{
|
||||
item->setExpanded(true);
|
||||
}
|
||||
//}
|
||||
}else
|
||||
{
|
||||
|
@ -53,6 +53,11 @@ QString getFileType(QString filename)
|
||||
return returnValue;
|
||||
}
|
||||
|
||||
QString preparePath(QString path)
|
||||
{
|
||||
return path.trimmed().replace(' ', "\ ");
|
||||
}
|
||||
|
||||
int whatIpVersion(QString ipAddress)
|
||||
{
|
||||
QStringList fieldList;
|
||||
|
Loading…
Reference in New Issue
Block a user