AHTC/WebService/Matrix.Utility/SystemConfig.cs
2025-05-19 09:22:33 +08:00

23 lines
529 B
C#

using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web;
namespace Matrix.Utility
{
public class SystemConfig
{
public static string LogPath
{
get
{
//return HttpContext.Current.Server.MapPath("/") + "/Log";// ConfigurationManager.AppSettings["LogPath"];
return System.Environment.CurrentDirectory + "/Log";
}
}
}
}