SVN r1148

SVN-Revision: r1148
This commit is contained in:
cyf
2026-03-23 01:47:22 +00:00
parent eb0522e144
commit d8ac361255
14 changed files with 188 additions and 116 deletions
+16
View File
@@ -106,6 +106,22 @@ namespace Lskj.Util
}
}
/// <summary>
/// 导出文件的文件路径
/// </summary>
public static string ExportFilePath
{
get
{
string path = AbsolutelyPath + "TempFiles\\ExportFile/";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
return path;
}
}
public static void ClearFilesInDirectory(string targetDir)
{