Depending on what you're trying to do with paths, you may want to construct
File objects and then get the paths from them.  For example,

(let [home (File. "/Users/Bill")
        bashrc (File . home ".bashrc")]
  (.getPath bashrc))

I think that tends to be less cumbersome than stringing path components
together directly.


On Wed, Apr 28, 2010 at 9:37 AM, Teemu Antti-Poika <antti...@gmail.com>wrote:

>
>
> On Apr 28, 4:30 pm, WoodHacker <ramsa...@comcast.net> wrote:
> > Can someone explain to me why this doesn't work:
> >
> >   (let [ p     "Bill/"
> >           sep (System/getProperty "file.separator")
> >            ]
> >
> >       (if (= (last p) sep)
> >           (println "found separator")
> >           (println "no separator")
> >   )
> >
> > The (= (last p) sep) always returns false.   If I print them out
> > inside pipes they look like
> > | / | and | / | (white space on either side of the slash).
> >
> > Is this some sort of bug?   Is there a better solution for finding a
> > file separator at the end of a line?
>
> In the above p is a character /, and sep is a string of one char "/",
> therefore they are not equal.
>
> Maybe you should use String's endsWith?
>
> (.endsWith "bill/" (System/getProperty "file.separator"))
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com<clojure%2bunsubscr...@googlegroups.com>
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to