Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a dynamically constructed file path in haskell that ends up something like this:

/abc/def/../ghi/./jkl

and I'd like to reduce it to the more readable

/abc/ghi/jkl

For printing. Is there a library function to do this in haskell? I've looked all over and can't find one. It's not too hard to write, but it's a bit messy because you have to "look ahead" for ".."s, and I'd rather use a baked-in function if I can.

share|improve this question

2 Answers

up vote 15 down vote accepted

Beware that this is not simply a string processing question when links are involved:

$ mkdir -p foo/bar
$ ln -s foo/bar baz
$ echo gotcha! >foo/quux
$ cat quux
cat: quux: No such file or directory
$ cat baz/../quux
gotcha!

So you need to do IO.

The nearest I can find to what you want is canonicalizePath from System.Directory. It returns a path starting from the root directory, so you may want to use it in conjunction with makeRelative, also from System.Directory. But it does run in IO.

share|improve this answer

Take a look at System.FilePath.Posix. The normalise function does almost what you want:

> normalise "/abc/def/../ghi/./jkl"
"/abc/def/../ghi/jkl"

You could use splitDirectories to split the file name and simplify processing.

Beware of edge cases such as:

/../foo        -- Equal to /foo, at least on my system
../parent/foo  -- Requires a system call to eliminate the possibly-redundant ..
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.