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

How to get python to copy files to desktop

本问题已经有最佳答案,请猛点这里访问。

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

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

这是我目前所拥有的,但我想将DST文件夹更改为使用Windows7的桌面。


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

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