We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75602b commit cdc5b2aCopy full SHA for cdc5b2a
src/main/java/edu/ie3/datamodel/io/connectors/CsvFileConnector.java
@@ -264,7 +264,10 @@ public BufferedReader initIdCoordinateReader() throws FileNotFoundException {
264
* @return A set of relative paths to time series files, with respect to the base folder path
265
*/
266
private Set<String> getIndividualTimeSeriesFilePaths() {
267
- Path baseDirectoryPath = Paths.get(FilenameUtils.getPath(baseDirectoryName));
+ Path baseDirectoryPath =
268
+ Paths.get(
269
+ FilenameUtils.getFullPath(baseDirectoryName)
270
+ + FilenameUtils.getName(baseDirectoryName));
271
try (Stream<Path> pathStream = Files.walk(baseDirectoryPath)) {
272
return pathStream
273
.map(baseDirectoryPath::relativize)
0 commit comments