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)
Go to list of users who liked
More than 5 years have passed since last update.
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)
Register as a new user and use Qiita more conveniently
Go to list of users who liked