Skip to content

Commit 5c73359

Browse files
committed
Fixed csv file path when running on linux
1 parent fc72616 commit 5c73359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FroniusSolarApi.Repository/Csv/CsvConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public CsvConfiguration(IConfiguration configuration)
4646

4747
public string GetSaveLocation(string collection)
4848
{
49-
return FileLocation + @"\" + collection + "_" + FileName + ".csv";
49+
return FileLocation + @"/" + collection + "_" + FileName + ".csv";
5050
}
5151
}
5252
}

0 commit comments

Comments
 (0)