23 lines
529 B
C#
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";
|
|
}
|
|
}
|
|
}
|
|
}
|