mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-06-05 22:09:15 +02:00
6 lines
141 B
Kotlin
6 lines
141 B
Kotlin
package com.simplemobiletools.filepicker.extensions
|
|
|
|
fun String.getFilenameFromPath(): String {
|
|
return substring(lastIndexOf("/") + 1)
|
|
}
|