我正在使用以下代码来递归遍历目录:
contentComponent: props => <ScrollView><DrawerItems {...props} /><Text>Your Own Footer Area After</Text></ScrollView>
我也尝试过 for root, dirs, files in scandir.walk(IMAGES_ROOT):
print timestr() + " - Walking %s..." % root
,但每次都会卡在同一个目录中。该目录中只有文件,没有其他目录或符号链接。
操作系统是Ubuntu 14.04 64bit,我使用的是Python 2.7,我试图遍历的目录是在网络驱动器上。
我可以毫无问题地在我的文件浏览器中打开目录。