parentOf 静态方法
- String path
路径的父路径。
使用平台的路径分隔符将路径拆分,找到路径的最后一个路径组件,并返回该部分的前缀。
不会移除 Windows 路径的根组件,如 "C:" 或 "\\server_name\"。在 path
的最后一部分包含一个尾随路径分隔符,且不留下尾随路径分隔符。
实现
static String parentOf(String path) {
int rootEnd = -1;
if (Platform.isWindows) {
if (path.startsWith(_absoluteWindowsPathPattern)) {
// Root ends at first / or \ after the first two characters.
rootEnd = path.indexOf(new RegExp(r'[/\\]'), 2);
if (rootEnd == -1) return path;
} else if (path.startsWith('\\') || path.startsWith('/')) {
rootEnd = 0;
}
} else if (path.startsWith('/')) {
rootEnd = 0;
}
// Ignore trailing slashes.
// All non-trivial cases have separators between two non-separators.
int pos = path.lastIndexOf(_parentRegExp);
if (pos > rootEnd) {
return path.substring(0, pos + 1);
} else if (rootEnd > -1) {
return path.substring(0, rootEnd + 1);
} else {
return '.';
}
}