Comment puis-je obtenir le chemin du répertoire de données d'application (par exemple C:\Users\User\AppData\Roaming
) dans PowerShell?
powershell
scripting
Martin Buberl
la source
la source
$env:APPDATA
?$env:APPDATA
!Pour obtenir le répertoire AppData, utilisez la
GetFolderPath
méthode:Ou comme le mentionne Andy dans son commentaire, simplement:
[Environment]::GetFolderPath('ApplicationData')
la source
[Environment]::GetFolderPath('ApplicationData')
$TempInstallerPath="$Env:USERPROFILE\AppData\Local\Downloaded Installations" if(Test-Path $TempInstallerPath) { Remove-Item "$TempInstallerPath\*" -Recurse -Force -ErrorAction 0 }
la source