Skip to content

Instantly share code, notes, and snippets.

@magdamiu
Last active August 21, 2021 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magdamiu/86517f0dd0a9b2fa8c20349666fbcf56 to your computer and use it in GitHub Desktop.
Save magdamiu/86517f0dd0a9b2fa8c20349666fbcf56 to your computer and use it in GitHub Desktop.
Clean Code with Kotlin by Magda Miu - Meaningful names 1 - Clean Code
data class PathParts(val directory: String, val fileName: String)
fun splitPath(path: String) =
PathParts(
path.substringBeforeLast('/', ""),
path.substringAfterLast('/'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment