change-file-lines ( ..a path encoding quot: ( ..a seq -- ..b seq' ) -- ..b )
Factor handbook » Input and output » Reading and writing files

Prev:set-file-lines ( seq path encoding -- )
Next:with-file-reader ( path encoding quot -- )


Vocabulary
io.files

Inputs
patha pathname string
encodingan encoding descriptor
quota quotation


Outputs
None

Word description
Reads the file lines, transforms the file lines, and writes them back to the same file name.

Errors
Throws an error if the file cannot be opened for writing.

See also
set-file-lines, file-lines, set-file-contents, file-contents, change-file-contents

Definition


: change-file-lines
( ..a path encoding quot: ( ..a seq -- ..b seq' ) -- ..b )
[ [ file-lines ] ] dip compose [ set-file-lines ] 2bi ;
inline