mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-03-26 06:29:46 +08:00
13 lines
200 B
Dart
13 lines
200 B
Dart
|
|
|
|
import 'dart:io';
|
|
|
|
class Files {
|
|
//获取文件名称
|
|
|
|
static String getName(String path) {
|
|
var index = path.lastIndexOf(Platform.pathSeparator);
|
|
return path.substring(index + 1);
|
|
}
|
|
}
|