Allows to open cvs files with umlauts

fixes #18
This commit is contained in:
Martin Brodbeck 2019-10-01 11:38:41 +02:00
parent 04c553e657
commit 106846a127
1 changed files with 9 additions and 1 deletions

View File

@ -11,8 +11,16 @@ std::size_t CsvReader::readSellersFromFile(const fs::path& filePath, Marketplace
csv::CSVFormat format;
format.delimiter(';');
#if defined(_WIN64) || defined(_WIN32)
// Windows: Somhow this is necessary in order to open file names with umlauts
auto wide = filePath.wstring();
std::string fileName(wide.begin(), wide.end());
csv::CSVReader csvReader(fileName, format);
#else
csv::CSVReader csvReader(filePath.string(), format);
#endif
for (auto& seller : market->getSellers()) {
seller->setState(Seller::State::DELETE);
}