如何获取应用程序正在运行的当前目录?
你可以试试这个:
原文链接:https://www.f2er.com/windows/371183.htmlusing System.IO; using System.Reflection; namespace Utilities { static public class DirectoryHelper { static public string GetCurrentDirectory () { return Path.GetDirectoryName (Assembly.GetExecutingAssembly ().GetName ().CodeBase); } } }