Issue: There's a problem with file path processing when dealing with files located at the root of a drive. Specifically, when constructing temporary and destination paths, the paths are concatenated incorrectly. This results in invalid paths like K:__test.7z.samtmp
and K:test.zip
.
Source: The issue lies within RVIO.Path.Combine()
. The function includes a switch intended to check for the presence of a path separator at the end of the first argument. However, it also treats ":"
as a path separator, causing the return of a path missing a separator.
Consequence: File processing failing with ErrorOutputFile
.
I suspect this also affects RV since the code is shared.
kyis
3 weeks ago
Issue: There's a problem with file path processing when dealing with files located at the root of a drive. Specifically, when constructing temporary and destination paths, the paths are concatenated incorrectly. This results in invalid paths like
K:__test.7z.samtmp
andK:test.zip
.Source: The issue lies within
RVIO.Path.Combine()
. The function includes a switch intended to check for the presence of a path separator at the end of the first argument. However, it also treats":"
as a path separator, causing the return of a path missing a separator.Consequence: File processing failing with
ErrorOutputFile
.I suspect this also affects RV since the code is shared.