The implementation uses the FileSystem of the http package which uses "/" as a separator in paths regardless of the operating system. However, the filepath.join-method creates a path using the system-specific separator ("\" for Windows, see documentation) which results in a http: invalid character in file path-error in the migrationFromFile-method. Using the path.join-method instead resolves this issue.
The implementation uses the FileSystem of the http package which uses "/" as a separator in paths regardless of the operating system. However, the
filepath.join
-method creates a path using the system-specific separator ("\" for Windows, see documentation) which results in ahttp: invalid character in file path
-error in themigrationFromFile
-method. Using thepath.join
-method instead resolves this issue.