标签: file dart separator
Dart是否有一些功能或属性可以判断操作系统是否使用" /"或" \"在文件系统路径中,如Java中的File.separator?
答案 0 :(得分:4)
import 'dart:io'; ... Platform.Platform.pathSeparator
另见Dart by example - Dart I/O and Command Line Apps - Getting the path separator for the current platform
答案 1 :(得分:0)
导入'dart:io';
Platform.pathSeparator
小修正