| 42 | == Listing directories fails or shows no content (FTP) == |
| 43 | Directory listings are requested using {{{STAT}}}, {{{LIST -a}}} and {{{LIST}}} commands in that order. If a failure is detected (because the server may not support the command), the next option is tried. Because this can be fuzzy logic, it may still be that Cyberduck does not correctly fall back to a supported list command. You may then try to force the use of a given command. |
| 44 | |
| 45 | To disable {{{STAT}}} for directory listings, open a Terminal.app window and enter |
| 46 | |
| 47 | {{{ |
| 48 | defaults write ch.sudo.cyberduck ftp.sendStatListCommand false |
| 49 | }}} |
| 50 | |
| 51 | To disable {{{LIST -a}}} for directory listings, open a Terminal.app window and enter |
| 52 | |
| 53 | {{{ |
| 54 | defaults write ch.sudo.cyberduck ftp.sendExtendedListCommand false |
| 55 | }}} |
| 56 | |
| 57 | To disable {{{MLSD}}} for directory listings, open a Terminal.app window and enter |
| 58 | |
| 59 | {{{ |
| 60 | defaults write ch.sudo.cyberduck ftp.sendMlsdListCommand false |
| 61 | }}} |
| 62 | |
| 63 | Restart Cyberduck. |
| 64 | |