C#: System.IO.DirectoryNotFoundException: '找不到路径的一部分
C#: System.IO.DirectoryNotFoundException: 'Could not find a part of the path
我收到如标题所示的错误。我不知道为什么我会得到这个或者我应该如何解决这个问题。 Visual Studio 给我这一行标题中显示的错误:var f = System.IO.File.OpenRead(fil1);
class Program {
static void Main(string[] args) {
Stopwatch sw = Stopwatch.StartNew();
string fil1 = "C:\Users\mariu\Desktop\Jobboppgave\CaseConsoleApp\Prisfile.txt";
***var f = System.IO.File.OpenRead(fil1);***
int length = (int)(new System.IO.FileInfo(fil1).Length);
您的路径不正确,因为您没有在其中转义 \
。最快的方法是使用 @
:
string fil1 = @"C:\Users\mariu\Desktop\Jobboppgave\CaseConsoleApp\Prisfile.txt";
重建您的项目,问题将得到解决。
我收到如标题所示的错误。我不知道为什么我会得到这个或者我应该如何解决这个问题。 Visual Studio 给我这一行标题中显示的错误:var f = System.IO.File.OpenRead(fil1);
class Program {
static void Main(string[] args) {
Stopwatch sw = Stopwatch.StartNew();
string fil1 = "C:\Users\mariu\Desktop\Jobboppgave\CaseConsoleApp\Prisfile.txt";
***var f = System.IO.File.OpenRead(fil1);***
int length = (int)(new System.IO.FileInfo(fil1).Length);
您的路径不正确,因为您没有在其中转义 \
。最快的方法是使用 @
:
string fil1 = @"C:\Users\mariu\Desktop\Jobboppgave\CaseConsoleApp\Prisfile.txt";
重建您的项目,问题将得到解决。