Searched refs:mlsd (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Lib/test/ |
D | test_ftplib.py | 651 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/ |
D | ftp.c | 983 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/ |
D | ftplib.rst | 338 .. 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/ |
D | ftplib.py | 571 def mlsd(self, path="", facts=[]): member in FTP
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 1382 * Added :meth:`ftplib.FTP.mlsd` method which provides a parsable directory 2231 :meth:`ftplib.FTP.mlsd`
|