文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>一个用python写的文件目录浏览器

一个用python写的文件目录浏览器

时间:2006-12-22  来源:kingliyou

最近突然对脚本感起兴趣顺便又想写点东西练练手所以写了这么一个自己认为是垃圾的脚本...

#!/usr/bin/python
#Filename:dtree.py
#TODO: * exception handling: display the number of errors encountered
# * more user arguments
# * support path that ends with '/'

import os
import stat
import sys

PREF=' '
DELM='|'
DELM2='----'

def dtree(prefix,path):
    files = os.listdir(path)
    errors = 0
    suffix = ' '
    for f in files:
        try:
            mode = os.stat(path+'/'+f)[stat.ST_MODE]
            if stat.S_ISLNK(mode):
                suffix = '(->)'
            if stat.S_ISDIR(mode): #process directories
                print prefix + DELM + DELM2 + '+' + f + suffix
                errors = errors + dtree(prefix + DELM + PREF,path+'/'+f)
            else: #process files
                print prefix + DELM + DELM2 + f + suffix
        except OSError:
            errors = errors + 1
    return errors

# program entry
    
argPath=''
if len(sys.argv)<2:
    argPath=os.getcwd()
else:
    argPath=sys.argv[1]
    if argPath=='.':
        argPath=os.getcwd()
    
print 'Path:'+argPath
errors = dtree('',argPath)
print
print str(errors)+' error(s) ingonored'

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载