DirectoryNotFoundException Constructeurs
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.
Initialise une nouvelle instance de la classe DirectoryNotFoundException avec sa chaîne de message.
Surcharges
DirectoryNotFoundException() |
Initialise une nouvelle instance de la classe DirectoryNotFoundException dont la chaîne de message correspond à un message fourni par le système et HRESULT équivaut à COR_E_DIRECTORYNOTFOUND. |
DirectoryNotFoundException(String) |
Initialise une nouvelle instance de la classe DirectoryNotFoundException dont la chaîne de message correspond à |
DirectoryNotFoundException(SerializationInfo, StreamingContext) |
Obsolète.
Initialise une nouvelle instance de la classe DirectoryNotFoundException avec les informations de contexte et de sérialisation spécifiées. |
DirectoryNotFoundException(String, Exception) |
Initialise une nouvelle instance de la classe DirectoryNotFoundException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception. |
DirectoryNotFoundException()
Initialise une nouvelle instance de la classe DirectoryNotFoundException dont la chaîne de message correspond à un message fourni par le système et HRESULT équivaut à COR_E_DIRECTORYNOTFOUND.
public:
DirectoryNotFoundException();
public DirectoryNotFoundException ();
Public Sub New ()
Exemples
L’exemple de code suivant montre comment appeler le DirectoryNotFoundException constructeur.
using System;
using System.IO;
class Program
{
static void Main(string[] args)
{
try
{
// Specify a directory name that does not exist for this demo.
string dir = @"c:\78fe9lk";
// If this directory does not exist, a DirectoryNotFoundException is thrown
// when attempting to set the current directory.
Directory.SetCurrentDirectory(dir);
}
catch (DirectoryNotFoundException dirEx)
{
// Let the user know that the directory did not exist.
Console.WriteLine("Directory not found: " + dirEx.Message);
}
}
}
Imports System.IO
Module Module1
Sub Main()
Try
' Specify a directory name that does not exist for this demo.
Dim dir As String = "c:\78fe9lk"
' If this directory does not exist, a DirectoryNotFoundException is thrown
' when attempting to set the current directory.
Directory.SetCurrentDirectory(dir)
Catch ex As System.IO.DirectoryNotFoundException
' Let the user know that the directory did not exist.
Console.WriteLine("Directory not found: " + ex.Message)
End Try
End Sub
End Module
Remarques
Ce constructeur initialise la Exception.Message propriété du nouveau instance dans un message fourni par le système qui décrit l’erreur, par exemple « Impossible de trouver le répertoire spécifié ». Ce message prend en compte la culture système actuelle.
La Exception.InnerException propriété du nouveau instance est initialisée en null
.
Voir aussi
- Fichier et flux de données E/S
- Lecture de texte à partir d’un fichier
- Procédure : écrire du texte dans un fichier
S’applique à
DirectoryNotFoundException(String)
Initialise une nouvelle instance de la classe DirectoryNotFoundException dont la chaîne de message correspond à message
et HRESULT équivaut à COR_E_DIRECTORYNOTFOUND.
public:
DirectoryNotFoundException(System::String ^ message);
public DirectoryNotFoundException (string message);
public DirectoryNotFoundException (string? message);
new System.IO.DirectoryNotFoundException : string -> System.IO.DirectoryNotFoundException
Public Sub New (message As String)
Paramètres
- message
- String
String qui décrit l'erreur. Le contenu de message
doit être compréhensible par les utilisateurs. L'appelant de ce constructeur est requis pour vérifier que cette chaîne a été localisée pour la culture système actuelle.
Remarques
Ce constructeur initialise la Exception.Message propriété du nouveau instance à l’aide message
de .
La Exception.InnerException propriété du nouveau instance est initialisée en null
.
Voir aussi
- Fichier et flux de données E/S
- Lecture de texte à partir d’un fichier
- Procédure : écrire du texte dans un fichier
S’applique à
DirectoryNotFoundException(SerializationInfo, StreamingContext)
Attention
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initialise une nouvelle instance de la classe DirectoryNotFoundException avec les informations de contexte et de sérialisation spécifiées.
protected:
DirectoryNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected DirectoryNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected DirectoryNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IO.DirectoryNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.DirectoryNotFoundException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.IO.DirectoryNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.DirectoryNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Paramètres
- info
- SerializationInfo
SerializationInfo qui contient les données d'objet sérialisées concernant l'exception levée.
- context
- StreamingContext
StreamingContext qui contient des informations contextuelles relatives à la source ou à la destination.
- Attributs
Voir aussi
- Fichier et flux de données E/S
- Lecture de texte à partir d’un fichier
- Procédure : écrire du texte dans un fichier
S’applique à
DirectoryNotFoundException(String, Exception)
Initialise une nouvelle instance de la classe DirectoryNotFoundException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.
public:
DirectoryNotFoundException(System::String ^ message, Exception ^ innerException);
public DirectoryNotFoundException (string message, Exception innerException);
public DirectoryNotFoundException (string? message, Exception? innerException);
new System.IO.DirectoryNotFoundException : string * Exception -> System.IO.DirectoryNotFoundException
Public Sub New (message As String, innerException As Exception)
Paramètres
- message
- String
Message d'erreur qui explique la raison de l'exception.
- innerException
- Exception
Exception ayant provoqué l'exception actuelle. Si le paramètre innerException
n'est pas null
, l'exception actuelle est levée dans un bloc catch
qui gère l'exception interne.
Remarques
Une exception levée en conséquence directe d'une exception précédente doit contenir une référence à celle-ci dans la propriété InnerException. La propriété InnerException retourne la valeur passée au constructeur ou la valeur null
si la propriété InnerException ne fournit pas la valeur d'exception interne au constructeur.
Le tableau suivant affiche les valeurs de propriété initiales pour une instance de DirectoryNotFoundException.
Propriété | Value |
---|---|
InnerException | La référence à l'exception interne. |
Message | Chaîne du message d'erreur. |
Voir aussi
- Exception
- Gestion et levée d’exceptions
- Fichier et flux de données E/S
- Lecture de texte à partir d’un fichier
- Procédure : écrire du texte dans un fichier