assoc, attrib, cd, choco-apikey, choco-feature, choco-info, choco, cls: add Japanese translation (#4607)

This commit is contained in:
NL Sum
2020-10-13 06:12:57 +08:00
committed by GitHub
parent 245b22d5ea
commit 91df905346
8 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# attrib
> ファイルまたはディレクトリの属性を表示または変更します
> 詳しくはこちら: <https://docs.microsoft.com/windows-server/administration/windows-commands/attrib>.
- 現在のディレクトリ内のファイルの属性を表示します:
`attrib`
- 現在のディレクトリとサブディレクトリにあるファイルの属性を表示します:
`attrib /S`
- 現在のディレクトリとサブディレクトリ内のファイルとディレクトリの属性を表示します:
`attrib /S /D`
- ファイルに読み取り専用属性を追加します:
`attrib +R {{ファイル名.txt}}`
- システムとファイルの非表示属性を削除します:
`attrib -S -H {{ファイル名.txt}}`
- 非表示の属性をディレクトリに追加します:
`attrib +H {{ディレクトリパス}}`