In Common Lisp, is there a way to get the path to a compiled file (something like current-directory)?
The file is not inside the current-directory folder.
Perchance you want compile-file-pathname
, which gives you the destination where compile-file
would write into.
It'd help if you provide more context on what you're trying to achieve.