AppDomain.CurrentDomain.BaseDirectory
Application.StartupPath
都可以打开根目录的,编程时,是打开到你的工程/bin/debug下的,当你打包发布后就是与exe程序同一目录下的
C#中简单的用
System.Diagnostics.Process.Start("explorer.exe", System.IO.Directory.GetCurrentDirectory());
复杂的调用window API shell32.dll,这个得查查MSDN了
使用 Application.StartupPath
string skinFloder = Application.StartupPath + "*.exe";
if (Directory.Exists(skinFloder))
{
MessageBox.Show("*.exe正在运行");
}
else
{
MessageBox.Show("不存在*.exe文件");
return;
}
string filename;
filename ="email_log.log";
if (File.Exists(filename))
{
StreamWriter sw = new StreamWriter(filename, true);
sw.WriteLine("");
sw.WriteLine("日志: " + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "============================================================================");
sw.WriteLine(content);
sw.Close();
return;
}
像这样子的,什么路径也不要写就对了
str += "\r\n" + System.Windows.Forms.Application.ExecutablePath;
结果为:
D:\1\bin\Debug\路径测试.EXE