I'm interested in getting the location on disk of the current file. It
appears *file* provides this, but unfortunately it doesn't provide an
absolute path.

Inside the file /home/phil/src/mire/src/mire/rooms.clj:

  mire/rooms.clj

I tried using java.io.File so I'd have access to getAbsolutePath, but
this is inaccurate:

  (.getAbsoluteFile (java.io.File. *file*)) =>
  /home/phil/src/mire/mire/rooms.clj

There should be a "src" directory in between "mire" and "mire".

It looks like the value of *file* is relative to the classpath entry
where the file was loaded from, but getAbsoluteFile is assuming it's
relative to the current directory.

How do you get the absolute path for the current file?

-Phil

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