Я создаю проект ядра Dotnet Core 2.1, когда я пытаюсь открыть файл, я получаю эту ошибку System.IO.IOException, потому что он ищет файл в netcoreapp2.1
class Program
{
static void Main(string[] args)
{
string path = "C:\user\name\desktop\file.txt";
FileStream file = new FileStream(path, FileMode.Open);
}
}
и ошибка
System.IO.IOException: The syntax of the file name, directory or volume is incorrect C:\Users\name\source\repos\app\app\bin\Debug\netcoreapp2.1\C:\user\name\Desktop\file.txt