python列出当前目录、子目录和文件的脚本

只列出当前目录和子目录方法一

1、编辑脚本

[root@iZbp171r05i3piseee5kuaZ tmp]# vim /root/filelist.py #!/usr/bin/env python import os for root,dirs,files in os.walk('/tmp'): print root



【python列出当前目录、子目录和文件的脚本】2、执行脚本和确认

[root@iZbp171r05i3piseee5kuaZ tmp]# python /root/filelist.py /tmp /tmp/gxmdir /tmp/gxmdir/ddd /tmp/csdir /tmp/.ICE-unix [root@iZbp171r05i3piseee5kuaZ tmp]# tree -d . ├── csdir └── gxmdir └── ddd3 directories



只列出当前目录和子目录方法二
1、编辑脚本
[root@iZbp171r05i3piseee5kuaZ tmp]# vim /root/filelist.py #!/usr/bin/env python import os for root,dirs,files in os.walk('/tmp'): print root print dirs



2、执行脚本和确认([]里面表示子目录)
[root@iZbp171r05i3piseee5kuaZ tmp]# python /root/filelist.py /tmp ['gxmdir', 'csdir', '.ICE-unix'] /tmp/gxmdir ['ddd'] /tmp/gxmdir/ddd [] /tmp/csdir [] /tmp/.ICE-unix [] [root@iZbp171r05i3piseee5kuaZ tmp]# tree -d . ├── csdir └── gxmdir └── ddd3 directories



列出当前目录、子目录和文件方法一
1、编辑脚本
[root@iZbp171r05i3piseee5kuaZ tmp]# vim /root/filelist.py #!/usr/bin/env python import os for root,dirs,files in os.walk('/tmp'): print root print dirs print files



2、执行脚本和确认(第二个[]里面表示子目录,第三个[]里面表示文件)
[root@iZbp171r05i3piseee5kuaZ tmp]# python /root/filelist.py /tmp ['gxmdir', 'csdir', '.ICE-unix'] ['mqm_status.txt', '.s.PGSQL.5432', 'zapache-9009-http___localhost_99_server-status_auto.cache', 'zapache-9009-http___localhost_99_server-status_auto.ts', '.s.PGSQL.5432.lock', 'Aegis-', 'tcp_status.txt', 'dspam.7z', 'smtp_monitor-stderr---supervisor-8onXRl.log', 'dspam.csv'] /tmp/gxmdir ['ddd'] ['2222', '1111'] /tmp/gxmdir/ddd [] ['5555'] /tmp/csdir [] ['3333', '4444'] /tmp/.ICE-unix [] [][root@iZbp171r05i3piseee5kuaZ tmp]# tree -d . ├── csdir └── gxmdir └── ddd3 directories



列出当前目录、子目录和文件方法二
1、编辑脚本
#!/usr/bin/env python import os for root,dirs,files in os.walk('/tmp'): for name in files: print (os.path.join(root,name)) 为什么files要再一次for循环列出来呢?因为列出来的格式是这样的,好用于os.path.join方法: 单独print name看看: mqm_status.txt .s.PGSQL.5432 zapache-9009-http___localhost_99_server-status_auto.cache zapache-9009-http___localhost_99_server-status_auto.ts .s.PGSQL.5432.lock Aegis- tcp_status.txt dspam.7z smtp_monitor-stderr---supervisor-8onXRl.log dspam.csv 2222 1111 5555 3333 4444没列出来的格式是这样的,不方便用于os.path.join方法: 单独print files看看: ['mqm_status.txt', '.s.PGSQL.5432', 'zapache-9009-http___localhost_99_server-status_auto.cache', 'zapache-9009-http___localhost_99_server-status_auto.ts', '.s.PGSQL.5432.lock', 'Aegis-', 'tcp_status.txt', 'dspam.7z', 'smtp_monitor-stderr---supervisor-8onXRl.log', 'dspam.csv'] ['2222', '1111'] ['5555'] ['3333', '4444'] []



2、执行脚本和确认
[root@iZbp171r05i3piseee5kuaZ tmp]# python /root/filelist.py /tmp/mqm_status.txt /tmp/.s.PGSQL.5432 /tmp/zapache-9009-http___localhost_99_server-status_auto.cache /tmp/zapache-9009-http___localhost_99_server-status_auto.ts /tmp/.s.PGSQL.5432.lock /tmp/Aegis- /tmp/tcp_status.txt /tmp/dspam.7z /tmp/smtp_monitor-stderr---supervisor-8onXRl.log /tmp/dspam.csv /tmp/gxmdir/2222 /tmp/gxmdir/1111 /tmp/gxmdir/ddd/5555 /tmp/csdir/3333 /tmp/csdir/4444[root@iZbp171r05i3piseee5kuaZ tmp]# tree -d . ├── csdir └── gxmdir └── ddd3 directories



列出当前目录、子目录和文件方法三
1、编辑脚本
#!/usr/bin/env python import osdef scanfile(path): filelist = os.listdir(path) allfile = [] for filename in filelist: filepath = os.path.join(path,filename) if os.path.isdir(filepath):#如果是目录,则执行函数。 scanfile(filepath) print filepath#如果不是目录,则直接打印filepath文件路径。 allfile = scanfile('/root/')





实例:
#!/usr/bin/env python import osfor root_dirs,sub_dirs,files in os.walk(ssl_zip_dir): print(root_dirs) print(files)运行结果: /root/cs ['54804.zip', '139623.zip', '59762.zip', '125058.zip', '64267.zip', '203971.zip']/root/cs/test ['77514.zip']备注:我所理解的是一般情况下可以不用到sub_dirs,因为root_dirs和files就可以。 备注:walk和listdir的区别在于,后者只能列出当前目录的。



备注:
1、os.walk()原型为:os.walk(top, topdown=True, οnerrοr=None, followlinks=False),我们一般只使用第一个参数。(topdown指明遍历的顺序)。
该方法对于每个目录返回一个三元组,(dirpath, dirnames, filenames)。第一个是路径,第二个是路径下面的目录,第三个是路径下面的非目录(对于windows来说也就是文件)
2、os.path.join(path1[, path2[, ...]])#把目录和文件名合成一个路径


转载于:https://blog.51cto.com/net881004/2051910

    推荐阅读