kotlin-stdlib / kotlin.io / java.io.File / normalize normalize JVM 1.0 fun File.normalize(): File Removes all . and resolves all possible .. in this file name. For instance, File("/foo/./bar/gav/../baaz").normalize() is File("/foo/bar/baaz"). Return normalized pathname with . and possibly .. removed.