File.separator
where a regular expression is required. This will fail on Windows
platforms, where the File.separator
is a backslash, which is interpreted in a
regular expression as an escape character. Amoung other options, you can just use
File.separatorChar=='\\' & "\\\\" : File.separator
instead of
File.separator