Update file_utils.dart

This commit is contained in:
Ankit Mahato
2024-03-12 01:50:33 +05:30
parent 5776d9b840
commit 5af2fe885e

View File

@ -48,6 +48,11 @@ String getShortPath(String path) {
return path;
}
String getFilenameFromPath(String path) {
var f = p.split(path);
return f.last;
}
String getTempFileName() {
return getNewUuid();
}