絶対パスから一番下のディレクトリ名を取得

path example: /data/aaa/bbb/xxx.txt

File file = new File(filePath);
File parentFile = file.getParentFile();
String directoryName = parentFile.getAbsolutePath().substring(parentFile.getAbsolutePath().lastIndexOf("/")+1, parentFile.getAbsolutePath().length());

ABOUTこの記事をかいた人

hundredappsの管理人であり、ソフトウェア開発者です。 開発したソフトウェアで、世の中の不便を1つでも改善できたらと思います。