-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilePath.cs
More file actions
34 lines (30 loc) · 1.04 KB
/
FilePath.cs
File metadata and controls
34 lines (30 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.IO;
namespace WordCounterApp.Services
{
public class FilePath
{
public void ProcessFiles()
{
Console.WriteLine("Введите путь до созданного файла:");
string inputPath = Console.ReadLine();
Console.WriteLine("Введите путь до создаваемого файла:");
string outputPath = Console.ReadLine();
try
{
if (!File.Exists(inputPath))
{
Console.WriteLine("Файл не найден\nRestart");
return;
}
FileReader reader = new FileReader();
reader.ReadAndProcess(inputPath, outputPath);
}
catch (Exception ex)
{
Console.WriteLine($"Ошибка при обработке файлов: {ex.Message}");
}
Console.WriteLine("Файл успешно обработан.");
}
}
}