You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val sys = System.getProperty("os.name")
val inPath = if (sys.contains("Windows")) FileSystems.getDefault.getPath(file.getPath.drop(1)) else FileSystems.getDefault.getPath(file.getPath)
Windows seems to have a backslash preceding the path.
The text was updated successfully, but these errors were encountered:
was throwing errors about "100" string not being able to convert toInt.
Need to add carrage return on Windows
Framing.delimiter(ByteString("\r\n"), Integer.MAX_VALUE))
also things like this i added
val sys = System.getProperty("os.name")
val inPath = if (sys.contains("Windows")) FileSystems.getDefault.getPath(file.getPath.drop(1)) else FileSystems.getDefault.getPath(file.getPath)
Windows seems to have a backslash preceding the path.
The text was updated successfully, but these errors were encountered: