You can try to place this code into AcadDoc.lsp file - it will log all files opened on your workstation.
Is also possible record saving/close operation or editing time, but this will require some extra coding.Code:(setq theDate (rtos (getvar "CDATE") 2 10) theDate (strcat (substr theDate 1 4) "." (substr theDate 5 2) "." (substr theDate 7 2) " " (substr theDate 10 2) ":" (substr theDate 12 2))) (setq fileStream (open "C:\\AutoCAD.log" "a")) (write-line (strcat theDate " - " (getvar "DWGPREFIX") (getvar "DWGNAME")) fileStream) (setq fileStream (close fileStream))




Reply With Quote

Bookmarks