RosettaCodeData/Task/File-size/Common-Lisp/file-size.lisp

10 lines
388 B
Common Lisp
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
(with-open-file (stream (make-pathname :name "input.txt")
:direction :input
:if-does-not-exist nil)
(print (if stream (file-length stream) 0)))
(with-open-file (stream (make-pathname :directory '(:absolute "") :name "input.txt")
:direction :input
:if-does-not-exist nil)
(print (if stream (file-length stream) 0)))