NextPrevUpTopContentsIndex

file-string

Function
Summary

Returns the contents of a file as a string.

Package

hcl

Signature

file-string file & key length external-format => string

Arguments

file

A pathname, string or file-stream, designating a file.

length

The number of characters to return in string, or nil (the default).

external-format

An external format specification, default value :default.

Values

string

A string containing characters from file.

Description

Returns the entire contents of file (if length is nil ), or the first length characters, as a string.

Example
CL-USER 26 > file-string "configure.lisp" :length 18
";; -*- Mode: Lisp;"
See also
guess-external-format

LispWorks Reference Manual - 6 Apr 2005

NextPrevUpTopContentsIndex