Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要自动化的测试用例,其中我需要将文件夹的权限更改为仅从 Python 脚本读取。我正在使用带有 python 脚本的测试完成工具来自动化手动测试。
我无法完成任务,我尝试了谷歌搜索但没有运气。
你可以试试这行代码。
import os, stat os.chmod(ur"file_path_name", stat.S_IREAD)