将路径unix标准化
static String toUnixStandardPath(String path) { return path.replaceAll(RegExp(r'[/\\]+'), '/'); }