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