Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
(if (info "file.txt")
|
||||
(prinl "Size: " (car @) " bytes, last modified " (stamp (cadr @) (cddr @)))
|
||||
(prinl "File doesn't exist") )
|
||||
|
||||
# for directory existing
|
||||
# Nehal-Singhal 2018-05-25
|
||||
|
||||
(if (info "./docs")
|
||||
(print 'exists)
|
||||
(print 'doesNotExist)))
|
||||
|
||||
# To verify if it's really a directory, (CAR of return value will be 'T').
|
||||
# abu 2018-05-25
|
||||
|
||||
(let I (info "./docs")
|
||||
(prinl
|
||||
(nond
|
||||
(I "Does not exist")
|
||||
((=T (car I)) "Is not a directory")
|
||||
(NIL "Directory exists") ) ) )
|
||||
Loading…
Add table
Add a link
Reference in a new issue