Home
last modified time | relevance | path

Searched refs:mlsd (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/test/
Dtest_ftplib.py651 list(self.client.mlsd())
652 list(self.client.mlsd(path='/'))
653 list(self.client.mlsd(path='/', facts=['size', 'type']))
655 ls = list(self.client.mlsd())
673 _name, facts = next(self.client.mlsd())
698 _name, facts = next(self.client.mlsd())
703 self.assertRaises(StopIteration, next, self.client.mlsd())
705 for x in self.client.mlsd():
/third_party/ffmpeg/libavformat/
Dftp.c983 static int ftp_parse_entry_mlsd(char *mlsd, AVIODirEntry *next) in ftp_parse_entry_mlsd() argument
986 char *saveptr = NULL, *p = mlsd; in ftp_parse_entry_mlsd()
987 ff_dlog(NULL, "%s\n", mlsd); in ftp_parse_entry_mlsd()
/third_party/python/Doc/library/
Dftplib.rst338 .. method:: FTP.mlsd(path="", facts=[])
359 .. note:: If your server supports the command, :meth:`mlsd` offers a better API.
371 .. note:: If your server supports the command, :meth:`mlsd` offers a better API.
/third_party/python/Lib/
Dftplib.py571 def mlsd(self, path="", facts=[]): member in FTP
/third_party/python/Doc/whatsnew/
D3.3.rst1382 * Added :meth:`ftplib.FTP.mlsd` method which provides a parsable directory
2231 :meth:`ftplib.FTP.mlsd`