所以我有一个文件(例如index.html),我想得到它的路径。 我的大多数文件都存储在debug-文件夹中。 所以例如我想得到路径:
C:\ documents and settings \ administrator \ My Documents \ Visual Studio 2010 \ Projects \ WebServer \ WebServer \ bin \ Debug \ index.html
我已经尝试过Path.GetDirectoryname(filename); //不起作用,因为我没有得到任何回报
答案 0 :(得分:2)
Path.GetFullPath(fileName);
答案 1 :(得分:1)