Como posso obter o caminho para o diretório de dados do aplicativo (por exemplo C:\Users\User\AppData\Roaming
) no PowerShell?
powershell
scripting
Martin Buberl
fonte
fonte
$env:APPDATA
?$env:APPDATA
!Para obter o diretório AppData, use o
GetFolderPath
método:[Environment]::GetFolderPath([Environment+SpecialFolder]::ApplicationData)
Ou, como Andy menciona em seu comentário, simplesmente:
[Environment]::GetFolderPath('ApplicationData')
fonte
[Environment]::GetFolderPath('ApplicationData')
$TempInstallerPath="$Env:USERPROFILE\AppData\Local\Downloaded Installations" if(Test-Path $TempInstallerPath) { Remove-Item "$TempInstallerPath\*" -Recurse -Force -ErrorAction 0 }
fonte