LoginSignup
3
0

More than 5 years have passed since last update.

フォルダーアクセス権限の変更

Posted at

os.chmod('フォルダー名',num)

num
0
1 –x
2 -w-
3 -wx
4 r–
5 r-x
6 rw-
7 rwx

例:フォルダーaaaに実行権限のみ付与
os.chmod('aaa',0755)

*実行環境によりoを入らないと実行できない場合がある
os.chmod('aaa',0o755)

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0