Hello
Is there any way to easily check for file existance using Lisp? I want to
make my call like this
does-file-exists("filename")
Thanks in advance
/Andreas
"Andreas" <········@telia.com> writes:
> Is there any way to easily check for file existance using Lisp? I want to
> make my call like this
>
> does-file-exists("filename")
> Thanks in advance
CL-USER> (probe-file "/etc/hosts")
#P"/etc/hosts"
-russ
Andreas wrote:
> Is there any way to easily check for file existance using Lisp?
http://www.lisp.org/HyperSpec/Body/fun_probe-file.html
> I want to make my call like this
>
> does-file-exists("filename")
(probe-file "filename")
Jeremy.