Computer >> Máy Tính >  >> Lập trình >> Python

Làm cách nào để thay đổi quyền của một thư mục bằng Python?


Trên nền tảng có sẵn lệnh chmod, bạn có thể gọi lệnh chmod như sau:

>>> import subprocess
>>> subprocess.call(['chmod', '-R', '+w', 'my_folder'])

Nếu bạn muốn sử dụng mô-đun hệ điều hành, bạn sẽ phải viết đệ quy nó:

Using os:
import os
def change_permissions_recursive(path, mode):
    for root, dirs, files in os.walk(path, topdown=False):
        for dir in [os.path.join(root,d) for d in dirs]:
            os.chmod(dir, mode)
    for file in [os.path.join(root, f) for f in files]:
            os.chmod(file, mode)
change_permissions_recursive('my_folder', 0o777)

Điều này sẽ thay đổi quyền của my_folder, tất cả các tệp và thư mục con của nó thành 0o777.