您如何获取运行应用程序的当前目录?

最佳答案

您可以尝试以下方法:

using System.IO;
using System.Reflection;

namespace Utilities
{
    static public class DirectoryHelper
    {
        static public string GetCurrentDirectory ()
        {
            return Path.GetDirectoryName (Assembly.GetExecutingAssembly ().GetName ().CodeBase);
        }
    }
}

关于windows-mobile - 如何在紧凑框架中获取当前目录?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/284049/

10-13 09:31