Raynes / fs

File system utilities for Clojure.
453 stars 119 forks source link

the extension should include the period #19

Closed miner closed 12 years ago

miner commented 12 years ago

In the released fs 1.0.0, extension includes the period. Python's os.path.splitext does too. My tests showed that using subs was a bit faster than the splitting the characters and rejoining them. I think it's easier to read as well. I added some tests, including one for the special case of a filename beginning with a "." -- the whole thing should be considered the name, with no extension.

Raynes commented 12 years ago

Excellent!