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