You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
some FTP clients use "LIST -a" to list all in the root dir.
So I added it to FtpControlConnection::stripFlagL. QString FtpControlConnection::stripFlagL(const QString &fileName) { QString a = fileName.toUpper(); if (a == "-L" || a == "-A") { return ""; } if (a.startsWith("-L ")) { return fileName.mid(3); } return fileName; }
The text was updated successfully, but these errors were encountered:
Hey,
some FTP clients use "LIST -a" to list all in the root dir.
So I added it to FtpControlConnection::stripFlagL.
QString FtpControlConnection::stripFlagL(const QString &fileName) { QString a = fileName.toUpper(); if (a == "-L" || a == "-A") { return ""; } if (a.startsWith("-L ")) { return fileName.mid(3); } return fileName; }
The text was updated successfully, but these errors were encountered: