- 论坛徽章:
- 0
|
pywugw@pywugw-laptop:~/Templates$ ls -R src/
src/:
d1 d2 d3 f1 f2 f3
src/d1:
1 2 3
src/d2:
src/d3:
pywugw@pywugw-laptop:~/Templates$ ls -R dst/
dst/:
1 3 4 d1 d2 d3
dst/d1:
dle ld sjd
dst/d2:
dst/d3:
|
Python 2.6.4 (r264:75706, Dec 7 2009, 18:43:55)
[GCC 4.4.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import shutil
>>> shutil.copytree('src','dst/src')
|
pywugw@pywugw-laptop:~/Templates$ ls -R dst/
dst/:
1 3 4 d1 d2 d3 src
dst/d1:
dle ld sjd
dst/d2:
dst/d3:
dst/src:
d1 d2 d3 f1 f2 f3
dst/src/d1:
1 2 3
dst/src/d2:
dst/src/d3:
|
==============
这次没理解错吧? |
|