免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2092 | 回复: 2
打印 上一主题 下一主题

解惑:promgramming python 中的一段程序 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-11-26 21:10 |只看该作者 |倒序浏览
在programming python 中:讲到这样一个目录拷贝的程序:哪 位高手能帮我解释一下下面几个问题:
1)程序中的verbose这个参数怎么用?为什么在开始定义了为global后,为0,而在后面的函数调用时,if条件还会成立?verbose  还会>1,或不为0吗?
2)hasattr()这个method 有什么功能?是不是给指定参数赋一个attribute?
3)在 getargs()函数中,return ()在返回时有两个参数,那结果返回的是什么值?
程序如下:

[code]import os,sys
verbose=0import os,sys
verbose=0
dcount=fcount=0
maxfileload=500000
blksize=1024*100
def cpfile(pathfrom,pathto,maxfileload=maxfileload):
    """
    copy file pathfrom to pathto ,byte for byte
    """
    if os.path.getsize(pathfrom)<=maxfileload:
        bytesfrom=open(pathfrom,'rb').read()
        open(pathto,'wb').write(bytesfrom)
        filefrom=open(pathfrom,'rb')
        fileto =open(pathto,'wb')
        while 1:
            bytesfrom=filefrom.read(blksize)
            if not bytesfrom:break
            fileto.write(bytesfrom)
def cpall(dirfrom,dirto):
    """
    copy contents of dirfrom and below to dirto
    """
    global dcount ,fcount
    for file in os.listdir(dirfrom):
        pathfrom =os.path.join(dirfrom,file)
        pathto =os.path.join(dirto,file)
        if not os.path.isdir(pathfrom):
            try:
                if verbose >1:print 'copying',pathfrom,'to',pathto
                cpfile(pathfrom,pathto)
                fcount=fcount+1
            except:
                        print 'error creating',pathto,'--skipped'
                        print sys.exc_info()[0],sys.exc_info()[1]
            else:
                    if verbose:print 'copying dir',pathfrom,'to',pathto
                    try:
                        os.mkdir(pathto)
                        cpall(pathfrom,pathto)
                        dcount=dcount+1
                    except:
                        print 'error creating',pathto,'--skipped'
                        print sys.exc_info()[0],sys.exc_info()[1]

def getargs():
    try:
        dirfrom,dirto=sys.argv[1:]
    except:
        print 'use:cpall.py dirfrom dirto'
    else:
        if not os.path.isdir(dirfrom):
            print 'error :dirfrom is not a directory'
        elif not os.path.exists(dirto):
            os.mkdir(dirto)
            print 'note:dirto was created'
            return (dirfrom ,dirto)
        else:
            print 'warning:dirto alread exists'
            if dirfrom ==dirto or (hasattr(os.path, 'samefile')and
                                    os.path.samefile(dirfrom,dirto)):
                print 'error:dirfrom same as dirto'
            else:
                return (dirfrom ,dirto)
if __name__=='__main__':
    import time
    dirstuple=getargs()
    if dirstuple:
        print 'copying...'
        start=time.time()
        cpall(*dirstuple)
                                                                                             
print 'copied',fcount,'files,',dcount,'directories',
print 'in',time.time()-start,'seconds'


各位高手,请帮忙看一下吧。

论坛徽章:
0
2 [报告]
发表于 2010-11-27 07:37 |只看该作者
1. verbose 應該只是用來調試用的吧

2. hasattr = has attribute ? = 這個 object 有沒有這個 method
  1. hasattr(...)
  2.     hasattr(object, name) -> bool
  3.    
  4.     Return whether the object has an attribute with the given name.
  5.     (This is done by calling getattr(object, name) and catching exceptions.)
复制代码
3. tuple

论坛徽章:
0
3 [报告]
发表于 2010-11-27 19:58 |只看该作者
明白了,多谢2楼指点。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP