|
@@ -5806,7 +5806,7 @@ namespace Welling_Motor_Debug_Tool
|
|
|
//±£´æºÍÉÏ´«
|
|
|
string LogSavePath = "";
|
|
|
string LogSaveFileName = "";
|
|
|
- string ProductInfo = textBox_FacModeScan.Text;
|
|
|
+ string ProductInfo = textBox_FacModeScan.Text.Replace(" ", "_");
|
|
|
LogSavePath = LocalSavePath + DateTime.Now.ToString("yyyy-MM-dd").Replace("/", "-") + "\\" + ProductInfo;
|
|
|
if (Directory.Exists(LogSavePath) == false)
|
|
|
{
|
|
@@ -8132,7 +8132,7 @@ namespace Welling_Motor_Debug_Tool
|
|
|
//±£´æºÍÉÏ´«
|
|
|
string LogSavePath = "";
|
|
|
string LogSaveFileName = "";
|
|
|
- string ProductInfo = textBox_CheckModeScan.Text;
|
|
|
+ string ProductInfo = textBox_CheckModeScan.Text.Replace(" ", "_"); ;
|
|
|
LogSavePath = LocalSavePath + DateTime.Now.ToString("yyyy-MM-dd").Replace("/", "-") + "\\" + ProductInfo;
|
|
|
if (Directory.Exists(LogSavePath) == false)
|
|
|
{
|