toUnixStandardPath static method

String toUnixStandardPath(
  1. String path
)

将路径unix标准化

Implementation

static String toUnixStandardPath(String path) {
  return path.replaceAll(RegExp(r'[/\\]+'), '/');
}