获得系统特定目录的路径

            // 获得%APPDATA%路径
            Console.WriteLine(System.Environment.GetEnvironmentVariable("appdata"));

            // 取得各种系统固定路径
            Type folder = typeof(Environment.SpecialFolder);
            Array array = Enum.GetValues(folder);
            for (int i = 0; i < array.Length; i++ )
            {
                Console.WriteLine(System.Environment.GetFolderPath((Environment.SpecialFolder)array.GetValue(i)));
            }

            // 取得当前文件夹路径
            Console.WriteLine(System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location));

            // 取得用户名
            Console.WriteLine(System.Environment.UserName);

            // 取得PC名
            Console.WriteLine(System.Environment.MachineName);

            // 取得HOST名
            Console.WriteLine(System.Net.Dns.GetHostName());

            // 取得程序名
            Console.WriteLine(System.IO.Path.GetFileName(System.Environment.GetCommandLineArgs()[0]));


 

你可能感兴趣的:(获得系统特定目录的路径)