CSharp 从用户输入和句柄空格中获取路径

CSharp getting path from user input and handle spaces

早上好, 首先,我已经搜索过它,但我没有找到答案,经过多次尝试,我在这里希望得到答案(也是对资源的 link!)

我试图通过用户输入(控制台应用程序)获取路径,但是当我在文件夹中粘贴带有 space 的路径时,我会收到 "illegal characters" 错误。

我试过类似的东西:

DirectoryInfo path = new DirectoryInfo(Console.ReadLine());
var files = path.GetFiles();

但是如果粘贴我会出错 c:\some\path\pasted with spaces

我尝试用 String.Replace()

替换字符

我不知道如何获得 @"c:\some\path\enterd with space"

我能做什么?

尝试使用下面的方法对读入的内容进行转义。同时添加检查以确保路径有效。以下在具有本地路径 C:\TS Space

的测试项目中工作
 static void Main(string[] args)
        {
            Console.WriteLine("Enter Path");
            var dirPath = @"" + Console.ReadLine();

            if (Directory.Exists(dirPath))
            {
                var path = new DirectoryInfo(dirPath);
                var files = path.GetFiles();
            }
        }

希望对您有所帮助。

@ 符号将字符串标记为 Verbatim string Literal - 忽略字符串中通常被解释为转义序列的任何内容。

这将确保这两个字符串被视为相同:

"D:\Books\DaVinciCode.txt" 

相同
@"D:\Books\DaVinciCode.txt"

如果上面的字符串中没有 @ 符号,编译器会认为您试图转义字母 'B' 和 'D' 从而抛出编译时错误 - 无法识别转义序列,因为 'B' 和 'D' 不是有效的转义序列。

和处理空间将通过创建路径来处理:

 string filePath;
 Console.WriteLine("Enter Path: ");
 filePath = @""+Console.ReadLine();
 FileInfo file = new FileInfo(filePath);
 Console.WriteLine(file.FullName);