FileSystemProxy.DirectoryExists(String) Méthode
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne la valeur True
si le répertoire spécifié existe.
public:
bool DirectoryExists(System::String ^ directory);
public bool DirectoryExists (string directory);
member this.DirectoryExists : string -> bool
Public Function DirectoryExists (directory As String) As Boolean
- directory
- String
Chemin d'accès du répertoire.
True
si le répertoire existe ; sinon False
.
Cet exemple montre comment déterminer si le répertoire C:\backup\logs
existe et vérifier ses propriétés.
If My.Computer.FileSystem.DirectoryExists("C:\backup\logs") Then
Dim logInfo = My.Computer.FileSystem.GetDirectoryInfo(
"C:\backup\logs")
End If
Commentaires sur .NET
.NET est un projet open source. Sélectionnez un lien pour fournir des commentaires :