diff --git a/IRaCIS.Core.Application/Service/QC/NoneDicomStudyService.cs b/IRaCIS.Core.Application/Service/QC/NoneDicomStudyService.cs index f8be502c..aa929b10 100644 --- a/IRaCIS.Core.Application/Service/QC/NoneDicomStudyService.cs +++ b/IRaCIS.Core.Application/Service/QC/NoneDicomStudyService.cs @@ -217,9 +217,12 @@ namespace IRaCIS.Core.Application.Contracts { var rootPath = Directory.GetParent(_hostEnvironment.ContentRootPath.TrimEnd('\\')).IfNullThrowException().FullName; - _logger.LogError(rootPath); - var _fileStorePath = Path.Combine(rootPath, relativePath.Replace('/', '\\')); + var _fileStorePath = Path.Combine(rootPath, relativePath.Replace('/', '\\').Trim('\\')); + + //_logger.LogError(rootPath); + + //_logger.LogError(_fileStorePath); var storePreviewPath = _fileStorePath + ".preview.jpeg";