Hi, I need a small lisp that opens and closes a file for me in the background. Nothing needs to be done.
In this lisp the file is opened but not closed.
(defun c:open_close_explorer ()
(setq Path "Y:\\Folder\\Data\\Test.txt")
(setq File (StartAPP "Explorer.Exe" Path))
(close File)
(princ)
)
Does anyone have an idea?