YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* 隠しファイル(Hidden属性)の操作 [#e1814f57]
** 隠しファイルと隠しフォルダの一覧を取得する [#y77a4457]
dir -Hidden
または
dir -Attributes Hidden
*** サブフォルダも含めてすべての隠しファイルの一覧を取得...
dir -Hidden -Recurse | select FullName
** 隠しファイルの一覧を取得する(隠しフォルダを含めない)...
dir -Attributes !Directory+Hidden
または
dir -Attributes !D+H (上の省略形)
- '''!'''で除外、'''+'''で包含、ほかに''','''でORなど
- その他の属性ついて: https://docs.microsoft.com/en-us/p...
** 隠しファイルと隠しフォルダを含めたすべてのファイルとフ...
dir -Force
** ファイルに隠し属性を付与する [#qc0483f4]
dir '.git*' | % { $_.Attributes += 'Hidden' } # .gitで...
または
$file = Get-Item '.gitignore'
$file.Attributes += 'Hidden'
** ファイルの隠し属性を除去する [#i8104c0e]
dir -Hidden | % { $_.Attributes -= 'Hidden' }
または
$file = Get-Item -Force '.gitignore' # 隠し属性のファイ...
$file.Attributes -= 'Hidden'
** 参考 [#d860ba91]
- https://docs.microsoft.com/en-us/powershell/module/micr...
- https://docs.microsoft.com/en-us/dotnet/api/system.io.f...
- http://powershell-guru.com/powershell-tip-75-list-only-...
- https://serverfault.com/questions/207383/how-to-unhide-...
終了行:
* 隠しファイル(Hidden属性)の操作 [#e1814f57]
** 隠しファイルと隠しフォルダの一覧を取得する [#y77a4457]
dir -Hidden
または
dir -Attributes Hidden
*** サブフォルダも含めてすべての隠しファイルの一覧を取得...
dir -Hidden -Recurse | select FullName
** 隠しファイルの一覧を取得する(隠しフォルダを含めない)...
dir -Attributes !Directory+Hidden
または
dir -Attributes !D+H (上の省略形)
- '''!'''で除外、'''+'''で包含、ほかに''','''でORなど
- その他の属性ついて: https://docs.microsoft.com/en-us/p...
** 隠しファイルと隠しフォルダを含めたすべてのファイルとフ...
dir -Force
** ファイルに隠し属性を付与する [#qc0483f4]
dir '.git*' | % { $_.Attributes += 'Hidden' } # .gitで...
または
$file = Get-Item '.gitignore'
$file.Attributes += 'Hidden'
** ファイルの隠し属性を除去する [#i8104c0e]
dir -Hidden | % { $_.Attributes -= 'Hidden' }
または
$file = Get-Item -Force '.gitignore' # 隠し属性のファイ...
$file.Attributes -= 'Hidden'
** 参考 [#d860ba91]
- https://docs.microsoft.com/en-us/powershell/module/micr...
- https://docs.microsoft.com/en-us/dotnet/api/system.io.f...
- http://powershell-guru.com/powershell-tip-75-list-only-...
- https://serverfault.com/questions/207383/how-to-unhide-...
ページ名: