アプリケーションデータディレクトリのパスを取得するにはどうすればよいですか(例:C:\Users\User\AppData\Roaming
)PowerShellで?
これが最短の方法です:
$env:APPDATA
またはローカルアプリデータの場合:
$env:LOCALAPPDATA
AppDataディレクトリを取得するには、GetFolderPath
メソッドを使用します。
[Environment]::GetFolderPath([Environment+SpecialFolder]::ApplicationData)
または、Andyがコメントで言及しているように、単純に:
[Environment]::GetFolderPath('ApplicationData')
$TempInstallerPath="$Env:USERPROFILE\AppData\Local\Downloaded Installations"
if(Test-Path $TempInstallerPath)
{
Remove-Item "$TempInstallerPath\*" -Recurse -Force -ErrorAction 0
}