Comment : écrire du texte dans un fichier
L'exemple suivant montre comment écrire du texte dans un fichier texte. Il lit tous les fichiers texte dans le dossier Mes documents de l'utilisateur à l'aide d'un modèle de recherche "*.txt" et les écrit dans un grand fichier texte.
Remarque |
---|
Les utilisateurs de Visual Basic peuvent choisir d'utiliser les méthodes et les propriétés fournies par la classe Microsoft.VisualBasic.FileIO.FileSystem pour les E/S de fichiers. |
Exemple
Imports System
Imports System.IO
Imports System.Text
Imports System.Collections.Generic
Class Program
Public Shared Sub Main(ByVal args As String())
Dim mydocpath As String = _
Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
Dim sb As New StringBuilder()
For Each txtName As String _
In Directory.EnumerateFiles(mydocpath, "*.txt")
Using sr As New StreamReader(txtName)
sb.AppendLine(txtName.ToString())
sb.AppendLine("= = = = = =")
sb.Append(sr.ReadToEnd())
sb.AppendLine()
sb.AppendLine()
End Using
Next
Using outfile As New StreamWriter(mydocpath & "\AllTxtFiles.txt")
outfile.Write(sb.ToString())
End Using
End Sub
End Class
using System;
using System.IO;
using System.Text;
using System.Collections.Generic;
class Program
{
static void Main(string[] args)
{
string mydocpath =
Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
StringBuilder sb = new StringBuilder();
foreach (string txtName in Directory.EnumerateFiles(mydocpath,"*.txt"))
{
using (StreamReader sr = new StreamReader(txtName))
{
sb.AppendLine(txtName.ToString());
sb.AppendLine("= = = = = =");
sb.Append(sr.ReadToEnd());
sb.AppendLine();
sb.AppendLine();
}
}
using (StreamWriter outfile =
new StreamWriter(mydocpath + @"\AllTxtFiles.txt"))
{
outfile.Write(sb.ToString());
}
}
}
using namespace System;
using namespace System::IO;
using namespace System::Text;
using namespace System::Collections::Generic;
ref class Program
{
public:
static void Main()
{
String^ mydocpath =
Environment::GetFolderPath(Environment::SpecialFolder::MyDocuments);
StringBuilder^ sb = gcnew StringBuilder();
for each (String^ txtName in Directory::EnumerateFiles(mydocpath, "*.txt"))
{
StreamReader^ sr = gcnew StreamReader(txtName);
sb->AppendLine(txtName->ToString());
sb->AppendLine("= = = = = =");
sb->Append(sr->ReadToEnd());
sb->AppendLine();
sb->AppendLine();
sr->Close();
}
StreamWriter^ outfile = gcnew StreamWriter(mydocpath + "\\AllTxtFiles.txt");
outfile->Write(sb->ToString());
outfile->Close();
}
};
int main()
{
Program::Main();
}
Voir aussi
Tâches
Comment : créer une liste des répertoires
Comment : lire et écrire dans un fichier de données créé récemment
Comment : ouvrir un fichier journal et y ajouter des éléments
Comment : lire du texte dans un fichier
Comment : lire les caractères d'une chaîne
Comment : écrire des caractères dans une chaîne