LoginSignup
2
0

More than 3 years have passed since last update.

Nimでファイルの権限を付与、取得する

Last updated at Posted at 2020-12-17

権限を付与

FilePermissionはenumなので、その中の付与したい権限をsetとして定義します。

# setFilePermissionsはosにあります
import os

var perms: set[FilePermission]
perms = {fpUserExec, fpUserRead, fpGroupExec, fpGroupRead, fpOthersExec, fpOthersRead}

# ファイルに権限を付与
setFilePermissions(DATA_TASK_DIR, perms)

権限を取得

getFilePermission()

実際にsetFilePermissionsを行っているソースが見つからず、少しハマったので参考になれば。

2
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
2
0