clojure how to know the path of a folder / file / directory in one project?

后端 未结 3 1771
名媛妹妹
名媛妹妹 2021-02-13 11:53

Assume there is two files inside my clojure project, one clj and the other is txt. Is there a way to know the path (as a string) of the txt file from the clj file?

Ther

3条回答
  •  忘掉有多难
    2021-02-13 12:36

    This gives where the current clj file, the one that this code is written in.

    No, it doesn't. It gives the current directory.

    Did you take into account that one can run clojure scripts that are not in the current directory?

提交回复
热议问题