Removes all . and resolves all possible .. in this file name. For instance, File("/foo/./bar/gav/../baaz").normalize() is File("/foo/bar/baaz").
File("/foo/./bar/gav/../baaz").normalize()
File("/foo/bar/baaz")
normalized pathname with . and possibly .. removed.
Thanks for your feedback!