猫猫1 发表于 2017-5-4 10:21:07

Python 中怎么 copy 文件和目录


>>> import shutil
>>> dir(shutil)
['Error', '__all__', '__builtins__', '__doc__', '__file__', '__name__', '_samefi
le', 'abspath', 'copy', 'copy2', 'copyfile', 'copyfileobj', 'copymode', 'copysta
t', 'copytree', 'destinsrc', 'move', 'os', 'rmtree', 'stat', 'sys']
>>> shutil.copyfile('d:/c.sql','d:/cc.sql')
>>>
from http://www.pythonid.com/html/fenleiwenzhang/normalproblem/20070705/78.html
mulu:
>>> import shutil
>>> shutil.copytree('d:/test','d:/testd')
>>>
 
From http://www.pythonid.com/html/fenleiwenzhang/normalproblem/20070705/79.html



页: [1]
查看完整版本: Python 中怎么 copy 文件和目录