当我没有在C#中指定特定路径时,fileinfo如何获取路径

时间:2018-09-27 04:33:43

标签: c# .net c#-4.0 fileinfo

这是我的代码

private const string abc="demo.sql";
var fileinfo = new fileInfo(abc);

我想知道fileInfo将如何读取路径,我的意思是我没有为.sql文件指定任何路径时的目录路径。我已经将sql文件放在c#项目的其他文件夹中,想知道如何读取该文件夹的路径

1 个答案:

答案 0 :(得分:0)

它将假定路径是从中运行应用程序的执行目录。

如果应用程序的执行目录为class Client extends MY_Controller { function edit($id){ $this->form_validation->set_rules("name", "Name", "required|max_length[50]"); } } ,则变量fileinfo将具有以下属性和值

enter image description here

您会注意到C:\Program Files(x86)\LINQPad5属性为Exists,因为上述目录中没有名为False的文件。