Jak mogę uzyskać ścieżkę do katalogu danych aplikacji (np. C:\Users\User\AppData\Roaming
) W PowerShell?
powershell
scripting
Martin Buberl
źródło
źródło
$env:APPDATA
?$env:APPDATA
!Aby pobrać katalog AppData, użyj
GetFolderPath
metody:Lub, jak wspomina Andy w swoim komentarzu, po prostu:
[Environment]::GetFolderPath('ApplicationData')
źródło
[Environment]::GetFolderPath('ApplicationData')
$TempInstallerPath="$Env:USERPROFILE\AppData\Local\Downloaded Installations" if(Test-Path $TempInstallerPath) { Remove-Item "$TempInstallerPath\*" -Recurse -Force -ErrorAction 0 }
źródło