使用Python将文件从pwd复制到另一个目录

时间:2014-02-07 17:05:04

标签: python file directory copy shutil

我想将当前工作目录中的所有文件复制到另一个位置。

我尝试过以下各种变体:

import shutil
shutil.copyfile('/*','/my/other/directory/location')

这会出错:OSError: [Errno 2] No such file or directory: '/*'

我在考虑使用os.systemcp命令。

有没有人有更好的想法?

1 个答案:

答案 0 :(得分:2)

我会使用shutil。这有问题吗?

我个人倾向于使用:

shutil.copytree(src, dst, symlinks=False, ignore=None)

因为需要子目录

更新------

要获取当前工作目录

os.getcwd()