在存储的特定文件夹中,“显示/隐藏项目”的设置在哪里?
我希望能够以编程方式更改它,希望在PowerShell中。
所以试试这个:
$file = "c:\temp\t.txt" # Hidde $file Set-ItemProperty -Path $file -Name attributes -Value ([io.fileattributes]::Hidden) # Remove Hidden if set Set-ItemProperty -Path $file -Name attributes -Value ((Get-ItemProperty $file).attributes -bxor ([io.fileattributes]::Hidden))