SVN r1205

SVN-Revision: r1205
This commit is contained in:
cyf
2026-06-01 02:19:36 +00:00
parent 41a12f4938
commit b44599cc2c
3 changed files with 58 additions and 27 deletions
+18
View File
@@ -123,6 +123,24 @@ namespace Lskj.Util
}
/// <summary>
/// 签章打印临时文件
/// </summary>
public static string SignatureFilePath
{
get
{
string path = AbsolutelyPath + "TempFiles\\SignatureFile/";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
return path;
}
}
public static void ClearFilesInDirectory(string targetDir)
{
// 校验目录是否存在