Ejemplo 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)
Ejemplo 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)
Ejemplo n.º 3
0
 def scandir(path='.'):
     for name, st in _scandir.scandir_helper(unicode(path)):
         yield DirEntry(path, name, None, st)
Ejemplo n.º 4
0
 def scandir(path='.'):
     for name, st in _scandir.scandir_helper(unicode(path)):
         yield DirEntry(path, name, None, st)