uBIMEarthTools/地质建模/Utils/AppConfig.cs
2018-10-22 19:28:56 +08:00

26 lines
810 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace uBIM_EarthTools
{
internal class AppConfig
{
#region
/// <summary>
/// 程序需记录的数据目录(如设置等)
/// </summary>
public static readonly string APP_DATA_PATH = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\\uBIMTools";
#endregion
#region
/// <summary>
/// 临时数据目录
/// </summary>
public static readonly string APP_TEMP_PATH = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\\uBIMTools\\temp";
#endregion
}
}