|
@@ -147,6 +147,7 @@ namespace fis.Win.Dev.Managers
|
|
|
var patientPath = Path.Combine(reportPath, c.PatientName);
|
|
|
if (!Directory.Exists(patientPath))
|
|
|
{
|
|
|
+ patientPath = patientPath.Replace("*", "");
|
|
|
Directory.CreateDirectory(patientPath);
|
|
|
}
|
|
|
|
|
@@ -198,6 +199,7 @@ namespace fis.Win.Dev.Managers
|
|
|
var patientPath = Path.Combine(imagePath, c.PatientName);
|
|
|
if (!Directory.Exists(patientPath))
|
|
|
{
|
|
|
+ patientPath = patientPath.Replace("*", "");
|
|
|
Directory.CreateDirectory(patientPath);
|
|
|
}
|
|
|
|
|
@@ -226,6 +228,10 @@ namespace fis.Win.Dev.Managers
|
|
|
finally
|
|
|
{
|
|
|
_fileFinishCount++;
|
|
|
+ if (_fileFinishCount == 41)
|
|
|
+ {
|
|
|
+ ;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|