FileSystemProxy.FileExists(String) Méthode
Définition
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 fichier spécifié existe.
public:
bool FileExists(System::String ^ file);
public bool FileExists (string file);
member this.FileExists : string -> bool
Public Function FileExists (file As String) As Boolean
Paramètres
- file
- String
Nom et chemin d'accès du fichier.
Retours
Retourne True
si le fichier existe ; sinon, cette méthode retourne False
.
Exceptions
Le nom du fichier se termine par une barre oblique inverse (\).
Exemples
Cet exemple vérifie si le fichier Check.txt
existe ou non et fournit les informations dans une boîte de message.
If My.Computer.FileSystem.FileExists("c:\Check.txt") Then
MsgBox("File found.")
Else
MsgBox("File not found.")
End If
Remarques
Si l’application ne dispose pas des autorisations suffisantes pour lire le fichier spécifié, la FileExists
méthode retourne False
, quelle que soit l’existence du chemin ; la méthode ne lève pas d’exception.