Replaces all backslashes in path with forward slashes.
path
String toUnixSystemPathFormat(String path) { return path.split(RegExp(r'[\\/]')).join('/'); }