Python:尝试将文件从一个目录复制到另一个目录

时间:2019-12-19 16:04:13

标签: python

我正在尝试将文件从一个目录复制到另一个目录。找到用户的主路径并加入“下载”文件夹,我想将其“自述文件”复制到当前工作目录中。当我运行程序时,它完成了,然后没有文件被移动...

from pathlib import Path
import os
import shutil

os.chdir(os.pathabspath(os.path.dirname(__name__)))

def activities():
    user = os.path.expanduser('~')
    src = os.path.join(user, 'Downloads')
    dst = Path('.')
    for filename in os.listdir(src):
        if filename.startswith('readme'):
           shutil.copy2(src + filename, dst)
activities()

1 个答案:

答案 0 :(得分:0)

$url = 'https://api-prod.corelogic.com/trestle/odata/Property(361082372)/Media/All';
$headers = array(
    'cache-control' => 'no-cache',
    'Authorization' => 'Bearer '.$token
);
$args = array(
    'headers'   => $headers
);
$response = wp_remote_get($url, $args);
var_dump($response['body']);

希望这会有所帮助