修改标签路径

This commit is contained in:
2025-03-24 19:03:30 +08:00
parent d881dc6ec0
commit b60d2759b1
2 changed files with 13 additions and 3 deletions

View File

@ -752,7 +752,17 @@ namespace DH.Commons.Base
[Description("中处理-模型标签路径")]
public string In_lable_path
{
get => _in_lable_path;
get
{
if (string.IsNullOrEmpty(ModelPath) || string.IsNullOrWhiteSpace(ModelPath))
{
return string.Empty;
}
string dir = Path.GetDirectoryName(ModelPath);
string file = $"{Path.GetFileNameWithoutExtension(ModelPath)}.txt";
return Path.Combine(dir, file);
}
set
{
if (_in_lable_path == value) return;