On Feb 1, 6:22 am, Jim Van Donsel <j...@jimandbarb.net> wrote:
> The simple:
>
>      (file-seq (java.io.File. "."))
>
> will loop forever if it hits a directory structure with recursive
> links.
>
> Short of writing ugly code myself to detect such loops, is there
> already a Clojure thingamabob that does this safely?
>
> -Jim

It's not clear to me what a default solution should be when one seqs
over a cycle, other than continue on indefinitely.

As Sean says, the "solution" is whatever fits your particular
situation.  That said, you can use (.getCanonicalPath dir) to obtain a
unique string path for that directory.

-- 
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