How to get full file path from file name?

后端 未结 9 1803
[愿得一人]
[愿得一人] 2021-02-08 16:59

How do I get the full path for a given file?

e.g. I provide:

string filename = @\"test.txt\";

Result should be:

Full Fi         


        
9条回答
  •  温柔的废话
    2021-02-08 17:52

    I know my answer it's too late, but it might helpful to other's
    Try,

    Void Main()
    {
    string filename = @"test.txt";
    string filePath= AppDomain.CurrentDomain.BaseDirectory + filename ;
    Console.WriteLine(filePath);
    }
    

提交回复
热议问题