code-example | (code-example file . mark) | Convenient and specialized function returning the contents of a program file. |
read-text-file | (read-text-file file-name) | Return the textual contents of file-name, as a string |
read-text-file-between-marks | (read-text-file-between-marks file-name mark) | Reads the part of the file between - but excluding - two occurences of mark, and return it as a text string. |
read-text-file-from-input-port | (read-text-file-from-input-port input-port) | Return the textual contents of input-port, as a string |
read-text-file-including-marks | (read-text-file-including-marks file-name start-mark end-mark) | Reads the part of the file between and including occurences of start-mark and end-mark, and return it as a text string. |
write-string-to-port | (write-string-to-port str port [suppress-cr]) | Write the string str to port, which is assumed to be open. |
write-text-file | (write-text-file str file-name [suppress-cr]) | Write the text string str to the file named file-name. |