Powershell - Tester la présence de fichier ou dossier avec Test-Path

Pour me soutenir, vous pouvez vous abonner à la chaîne, partager et liker les vidéos, désactiver votre bloqueur de pub ou encore faire un don. Merci!

Bonjour,

L’argument -PathType de Test-Path nous permet de vérifier si l’élément est un fichier ou un dossier.

$dossier = 'c:\windows'
$fichier = 'notepad.exe'
# Démonstration pour un dossier -PathType Container :
Test-Path -Path $dossier -PathType Container
Test-Path -Path $dossier -PathType Leaf
Test-Path -Path "$dossier\$fichier" -PathType any
Test-Path -Path "$dossier\$fichier"
# Démonstration pour un fichier -PathType Leaf :
Test-Path -Path "$dossier\$fichier" -PathType Container
Test-Path -Path "$dossier\$fichier" -PathType Leaf
Test-Path -Path "$dossier\$fichier" -PathType any
Test-Path -Path "$dossier\$fichier"

Liens en relation