file-exists?
-- r7rs
Definition procedure
;
file-exists?
(from vonuvoli
);Procedure variants:
((path-string) -> (boolean))
path-string
;boolean
;scheme:file
-- (scheme file)
;scheme
-- (scheme)
;(file-exists? filename)
Domain: It is an error if
filename
is not a string.The
file-exists?
procedure returns#t
if the named file exists at the time the procedure is called, and#f
otherwise.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.