﻿{"id":783,"date":"2023-06-30T10:35:11","date_gmt":"2023-06-30T02:35:11","guid":{"rendered":"https:\/\/dt9025a.top\/?p=783"},"modified":"2023-08-07T16:01:48","modified_gmt":"2023-08-07T08:01:48","slug":"%e5%be%ae%e4%bf%a1%e6%96%87%e4%bb%b6%e5%8e%bb%e9%99%a4%e5%8f%aa%e8%af%bb%e7%9a%84-python-%e4%bb%a3%e7%a0%81","status":"publish","type":"post","link":"https:\/\/dt9025a.top\/?p=783","title":{"rendered":"\u5fae\u4fe1\u6587\u4ef6\u53bb\u9664\u53ea\u8bfb\u7684 Python \u4ee3\u7801"},"content":{"rendered":"\n<p>\u777f\u667a\u5fae\u4fe1<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import os\nimport stat\n\n\nwechat_file_dir = \"E:\/WeChat Files\/wxid_xxx\/FileStorage\/File\/\"\n\n\ndef set_attrib(file):\n    s = os.stat(file).st_file_attributes\n    if s &amp; stat.FILE_ATTRIBUTE_READONLY:\n        os.chmod(file, stat.FILE_ATTRIBUTE_NORMAL)\n        print(\"Set file \\\"%s\\\" to writeable.\" % file)\n\n\ndef recursive_search(target, top=\"\"):\n    if target == \"\":\n        target = top\n    else:\n        if top[-1] != '\\\\' and top[-1] != '\/':\n            top = top + \"\\\\\"\n        target = top + target\n    os.chdir(target)\n    dirs = [f for f in os.listdir() if os.path.isdir(f)]\n    files = [f for f in os.listdir() if os.path.isfile(f)]\n    for d in dirs:\n        recursive_search(target=d, top=target)\n    for f in files:\n        set_attrib(f)\n\n\nif __name__ == '__main__':\n    recursive_search(top=wechat_file_dir, target=\"\")\n    print(\"\\n\\nfinished.\")\n\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u777f\u667a\u5fae\u4fe1 import os import stat wechat_file_dir = &#8220;E:\/WeChat&#8230; <\/p>\n<div class=\"read-more navbutton\"><a href=\"https:\/\/dt9025a.top\/?p=783\">\u9605\u8bfb\u66f4\u591a<i class=\"fa fa-angle-double-right\"><\/i><\/a><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-783","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/dt9025a.top\/index.php?rest_route=\/wp\/v2\/posts\/783","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dt9025a.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dt9025a.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dt9025a.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dt9025a.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=783"}],"version-history":[{"count":0,"href":"https:\/\/dt9025a.top\/index.php?rest_route=\/wp\/v2\/posts\/783\/revisions"}],"wp:attachment":[{"href":"https:\/\/dt9025a.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=783"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dt9025a.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=783"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dt9025a.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=783"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}