Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.6.1
-
None
-
WinCE 6.0
Description
The QFtp command List fails because in the the regular expression for dosPattern in the method QftpDTP::parseDir is wrong. My WinCE Server 6.0 returns the following string:
01-01-06 12:00 45056 Filename.cfg
and the dosPattern is looking for an AM/PM at the end of the time:
^(\\d\\d-\\d\\d-\\d\\d\\ \\ \\d\\d:\\d\\d[AP]M)\\s+(<DIR>|\\d+)\\s+(\\S.*)$
changing the regular expression to:
^(\\d\\d-\\d\\d-\\d\\d\\ \\ \\d\\d:\\d\\d[AP ][M ])\\s+(<DIR>|\\d+)\\s+(\\S.*)$
fixes the bug.
Hope you will add this change to the next version.
Attachments
Issue Links
- relates to
-
QTBUG-25048 FTP list command fails with WinCE FTP server
- Open