Esempio n. 1
0
 def scandir(path='.'):
     for name, d_ino, d_type in _scandir.scandir_helper(path):
         scandir_dirent = Dirent(d_ino, d_type)
         yield DirEntry(path, name, scandir_dirent, None)
Esempio n. 2
0
 def scandir(path='.'):
     for name, d_ino, d_type in _scandir.scandir_helper(path):
         scandir_dirent = Dirent(d_ino, d_type)
         yield DirEntry(path, name, scandir_dirent, None)
Esempio n. 3
0
 def scandir(path='.'):
     for name, st in _scandir.scandir_helper(unicode(path)):
         yield DirEntry(path, name, None, st)
Esempio n. 4
0
 def scandir(path='.'):
     for name, st in _scandir.scandir_helper(unicode(path)):
         yield DirEntry(path, name, None, st)