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.
Windows では、ディレクトリのセキュリティ属性を編集することにより、C ドライブ内のディレクトリを手動で書き込み可能に変更して、ユーザーに完全な制御を提供できます。これはPythonでどのように行うことができますか?
私の考えは:
import os, stat my_dir = 'C:\\Program Files\\Java' os.chmod (my_dir, stat.S_IWRITE)
しかし、成功しません。
誰かアイデアがありますか?