Skip to content

Commit

Permalink
update dir
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Jan 30, 2025
1 parent 86eaf57 commit b043b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rdmp.Dicom/Extraction/DicomTagToCSV.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEventListener
try
{
destinationDirectory.Create();
var filepath = Path.GetFullPath(destinationDirectory.FullName, "dicomTags.csv");
var filepath = Path.Combine(destinationDirectory.FullName, "dicomTags.csv");

var sw = new StreamWriter(filepath);
using var w = new CsvWriter(sw, System.Globalization.CultureInfo.InvariantCulture);
Expand Down

0 comments on commit b043b2d

Please sign in to comment.