Bluelight CSV wird nun gelesen

This commit is contained in:
HuskyTeufel
2019-09-25 15:49:35 +02:00
parent 0c733eafdf
commit b47bf96cf7
4 changed files with 27 additions and 10 deletions

View File

@@ -218,7 +218,7 @@ namespace SanSystem
private bool AccessCSV()
{
string myPath = Path.Combine(destinationPath, "Trend");
string myPath = Path.Combine(destinationPath);
if (!Directory.Exists(myPath))
return false;
@@ -227,7 +227,7 @@ namespace SanSystem
IReadCSVData csvFile = null;
List<UVcsvStrukture> struktures = null;
csvFile = CsvParserFactory.ReadCSVFile(AcceptedCSVFormats.UVRELINING, files.Last());
csvFile = CsvParserFactory.ReadCSVFile(AcceptedCSVFormats.BLUELIGHT, files.Last());
try
{
struktures = csvFile.ReadCSVStrukture();