TarWriter.WriteEntry 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.
Surcharges
WriteEntry(TarEntry) |
Écrit l’entrée spécifiée dans le flux d’archive. |
WriteEntry(String, String) |
Écrit le fichier spécifié dans le flux d’archive en tant qu’entrée tar. |
WriteEntry(TarEntry)
- Source:
- TarWriter.cs
- Source:
- TarWriter.cs
- Source:
- TarWriter.cs
Écrit l’entrée spécifiée dans le flux d’archive.
public:
void WriteEntry(System::Formats::Tar::TarEntry ^ entry);
public void WriteEntry (System.Formats.Tar.TarEntry entry);
member this.WriteEntry : System.Formats.Tar.TarEntry -> unit
Public Sub WriteEntry (entry As TarEntry)
Paramètres
- entry
- TarEntry
Entrée tar à écrire.
Exceptions
Le type d’entrée est HardLink ou SymbolicLink et le LinkName est null
ou vide.
Le flux d’archive est supprimé.
entry
a la valeur null
.
Un problème d’E/S s’est produit.
Remarques
Avant d’écrire une entrée dans l’archive, si vous avez écrit des données dans l’entrée DataStream, veillez à les rembobiner à la position de début souhaitée.
Voici les types d’entrée pris en charge pour l’écriture sur chaque format :
V7:
S’applique à
WriteEntry(String, String)
- Source:
- TarWriter.cs
- Source:
- TarWriter.cs
- Source:
- TarWriter.cs
Écrit le fichier spécifié dans le flux d’archive en tant qu’entrée tar.
public:
void WriteEntry(System::String ^ fileName, System::String ^ entryName);
public void WriteEntry (string fileName, string? entryName);
member this.WriteEntry : string * string -> unit
Public Sub WriteEntry (fileName As String, entryName As String)
Paramètres
- fileName
- String
Chemin d’accès au fichier à écrire dans l’archive.
- entryName
- String
Nom du fichier tel qu’il doit être représenté dans l’archive. Il doit inclure le chemin d’accès relatif facultatif et le nom de fichier.
Exceptions
Le flux d’archive est supprimé.
fileName
ou entryName
a la valeur null
ou est vide.
Un problème d’E/S s’est produit.