Advertisement
Andites

создание файла c#

Apr 5th, 2023
103
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. using System;
  2. using System.IO;
  3.  
  4. class Program {
  5. static void Main(string[] args) {
  6. // Укажите путь к файлу и его имя
  7. string path = @"C:\example\test.txt";
  8.  
  9. // Создаем файл и записываем информацию в него
  10. try {
  11. using (StreamWriter sw = new StreamWriter(path)) {
  12. sw.WriteLine("Это текст, который будет записан в файл.");
  13. sw.WriteLine("Можно добавлять и другую информацию.");
  14. }
  15. Console.WriteLine("Файл успешно создан.");
  16. }
  17. catch (Exception ex) {
  18. Console.WriteLine("Ошибка: " + ex.Message);
  19. }
  20. }
  21. }
  22.  
Advertisement
Comments
  • Andites
    1 year
    # text 0.30 KB | 0 0
    1. // Открыть файл для чтения
    2. using (StreamReader sr = new StreamReader(path)) {
    3. string line;
    4. // Читать файл построчно
    5. while ((line = sr.ReadLine()) != null) {
    6. Console.WriteLine(line);
Add Comment
Please, Sign In to add comment
Advertisement