示例#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)