| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.DxpLib
- {
- public class FolderConsts
- {
- static FolderConsts()
- {
- if (!Directory.Exists(Temp))
- Directory.CreateDirectory(Temp);
- }
- public static string Temp = Path.Combine(AppContext.BaseDirectory, "tmps");
- }
- }
|