获取系统的路径分隔符

获取系统的路径分隔符

Use Platform.pathSeparator to get the separator used by the operating system to separate components in file. Or, use the separator getter in the path Pub package.

import 'dart:io' show Platform;
import 'package:path/path.dart' as path;

main() {
  // Prints  '\' on Windows and '/' on other platforms.
  print(Platform.pathSeparator);

  // This does the same.
  print(path.separator);
}

手机扫码阅读