반응형
get file name from file path
파일path에서 파일명만 가져오기
변수 타입에따라 골라서 쓰면 되겠죠~
File을 사용하는 방법.
File file = new File("/storage/sdcard0/DCIM/Camera/hello_bryan.jpg");
String strFileName = file.getName();
Log.d("TEST", strFileName); // -> hello_bryan.jpg
substring 사용 방법.
String path = "/storage/sdcard0/DCIM/Camera/hello_bryan.jpg";
String filename=path.substring(path.lastIndexOf("/")+1);
Uri 일때 Uri.getLastPathSegment()
String filename = uri.getLastPathSegment();
728x90
반응형
'Android' 카테고리의 다른 글
[Android] Landscape 시 알아둬야 할 점 (0) | 2020.03.12 |
---|---|
[Android] androidx 에서 File 공유하기, File Share (0) | 2020.03.03 |
[Android] File copy 방법 몇개 (0) | 2020.03.03 |
[Android] BuildConfig 변수 생성/사용하기 (0) | 2020.03.02 |
[Android] 텍스트, 이미지, 동영상 일반 공유, 카카오톡 공유 (2) | 2020.02.24 |
댓글