static String converFileName(String filePath) { List strList = filePath.split('/'); String name = strList.last; return name; }