private void Form1_Load(object sender, EventArgs e)
{
//debug下面exe相同路径
string f1=Application.StartupPath + "\\test.txt";
FileInfo fi1 = new FileInfo(f1);
fi1.Create();
//csproj相同路径
string f2 = Application.StartupPath + "\\..\\..\\test.txt";
FileInfo fi2 = new FileInfo(f2);
fi2.Create();
MessageBox.Show("ok");
}
exe所在目录可以用 System.Windows.Forms.Application.StartupPath 取到,上一级当然就是
System.Windows.Forms.Application.StartupPath+@"\..\"
根目录你取它的前三个字符就行了。
我记得有一个方法是可以获取可执行文件的路径。。。