{"id":602,"date":"2025-03-22T11:30:49","date_gmt":"2025-03-22T03:30:49","guid":{"rendered":"https:\/\/blog.yuekegu.com\/?p=602"},"modified":"2025-03-22T11:30:49","modified_gmt":"2025-03-22T03:30:49","slug":"%e6%89%b9%e9%87%8f%e6%9b%b4%e6%94%b9%e5%9b%be%e7%89%87%e4%b8%ba%e5%a7%93%e5%90%8d","status":"publish","type":"post","link":"https:\/\/book.yuekegu.com\/index.php\/2025\/03\/22\/%e6%89%b9%e9%87%8f%e6%9b%b4%e6%94%b9%e5%9b%be%e7%89%87%e4%b8%ba%e5%a7%93%e5%90%8d\/","title":{"rendered":"\u6279\u91cf\u66f4\u6539\u56fe\u7247\u4e3a\u59d3\u540d"},"content":{"rendered":"\n<p>\u4e0b\u9762\u662f\u6279\u91cf\u4fee\u6539\u6587\u4ef6\u540d\u4e3a\u59d3\u540d\u7684\u5c0f\u5e94\u7528\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import os\nimport random\n\n\ndef random_name_picture(image_folder, name_file):\n    # \u8bfb\u53d6\u59d3\u540d\u6587\u4ef6\n    with open(name_file, 'r', encoding='utf-8') as f:\n        names = f.read().splitlines()\n\n    # \u83b7\u53d6\u56fe\u7247\u6587\u4ef6\u5217\u8868\n    image_files = &#91;f for f in os.listdir(image_folder) if f.lower().endswith(('.png', '.jpg', '.jpeg'))]\n\n    # \u6253\u4e71\u59d3\u540d\u987a\u5e8f\n    random.shuffle(names)\n\n    # \u4e3a\u56fe\u7247\u91cd\u547d\u540d\n    for i, image_file in enumerate(image_files):\n        if i &lt; len(names):\n            old_path = os.path.join(image_folder, image_file)\n            file_extension = os.path.splitext(image_file)&#91;1]\n            new_name = f\"{names&#91;i]}{file_extension}\"\n            new_path = os.path.join(image_folder, new_name)\n            os.rename(old_path, new_path)\n            print(f\"\u5c06 {image_file} \u91cd\u547d\u540d\u4e3a {new_name}\")\n        else:\n            print(\"\u59d3\u540d\u6570\u91cf\u4e0d\u8db3\uff0c\u65e0\u6cd5\u7ee7\u7eed\u91cd\u547d\u540d\u56fe\u7247\u3002\")\n            break\n\n\nif __name__ == \"__main__\":\n    # \u56fe\u7247\u6240\u5728\u6587\u4ef6\u5939\u8def\u5f84\n    image_folder = r'C:\\Users\\Administrator\\WPSDrive\\260820601\\WPS\u4e91\u76d8\\\u6559\u7814\u7ec4\\2025\u6625\\\u7f51\u7edc\u5b66\u4e60\u622a\u56fe\\\u9ad8\u4e8c\u6570\u5b66\u5907\u8bfe\u7ec4'\n    # \u59d3\u540d\u6587\u4ef6\u8def\u5f84\n    name_file = r'C:\\Users\\Administrator\\WPSDrive\\260820601\\WPS\u4e91\u76d8\\\u6559\u7814\u7ec4\\2025\u6625\\\u7f51\u7edc\u5b66\u4e60\u622a\u56fe\\\u9ad8\u4e8c\u6570\u5b66\u5907\u8bfe\u7ec4\\list.txt'\n    random_name_picture(image_folder, name_file)\n    <\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u4e0b\u9762\u662f\u6279\u91cf\u4fee\u6539\u6587\u4ef6\u540d\u4e3a\u59d3\u540d\u7684\u5c0f\u5e94\u7528\uff1a<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[],"class_list":["post-602","post","type-post","status-publish","format-standard","hentry","category-python"],"_links":{"self":[{"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/posts\/602","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/comments?post=602"}],"version-history":[{"count":0,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/posts\/602\/revisions"}],"wp:attachment":[{"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/media?parent=602"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/categories?post=602"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/book.yuekegu.com\/index.php\/wp-json\/wp\/v2\/tags?post=602"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}