On Thursday, April 29, 2021 4:31 PM, Erik Winkels <aeri...@xs4all.nl> wrote: > > Condition of type: FILE-ERROR > Filesystem error with pathname "SYS:help.doc". > Either > 1. the file does not exist, or > 2. we are not allowed to access the file, or > 3. the pathname points to a broken symbolic link. > No restarts available. > > Top level in: #<process TOP-LEVEL 0xb0581fc0>. >
I had the same issue on iOS, here is what I did: ;; needed e.g. for loading 'help.doc' (setf (logical-pathname-translations "SYS") (list (list #p"sys:**;*.*" (merge-pathnames "**/*.*" (user-homedir-pathname))))) Now you can put "help.doc" in (user-homedir-pathname), and ECL will find it. Paul