• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package shark
2 
3 import java.io.File
4 
classpathFilenull5 fun String.classpathFile(): File {
6   val classLoader = Thread.currentThread()
7     .contextClassLoader
8   val url = classLoader.getResource(this)!!
9   return File(url.path)
10 }