Is there really no function to get the root directory? 😳 ```hs rootDirectory :: FilePath -> FilePat rootDirectory "/directory/other.ext" == "/" rootDirectory "directory/other.ext" == "directory" rootDirectory "/foo/bar/baz" == "/" rootDirectory "foo/bar/baz" == "foo" ```