好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

获取系统的路径分隔符

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);
} 

查看更多关于获取系统的路径分隔符的详细内容...

  阅读:68次