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

你可能感兴趣的:(Python)