如何让python将文件复制到桌面

时间:2014-06-05 18:15:05

标签: python

如何让python将jpeg复制到桌面?

import shutil
src = ('1.3.jpg')
dst = ('tEST/nicholas')
count = 1
while count < 10000000000:
    shutil.copyfile(src, dst + str(count) + ".jpg")
    count += 1

这是我到目前为止,但我想将dst文件夹更改为桌面我正在使用Windows 7

1 个答案:

答案 0 :(得分:2)

只需定义桌面的绝对地址即可。

dst = 'C:\\Users\\[name of your account]\\myfile.txt'