std-ft-append


Synopsis

(std-ft-append <fname1> <fname2>)

Description

std-ft-append appends the textfile fname2 to the end of fname1. It could also be done with std-file-append but does not need any external module. It uses only standard AutoLISP functions like read-line and write-line and will not work with any binary file.

Example

(std-ft-append "TEST.INI" "APPEND.INI")

Arguments

fname1,fname2: Filenames. Partial or fully qualified filename specifiers without wildcards.

Return Value

T on success or nil.

Side Effects

On success it appends the contents of a textfile to the other textfile with plain AutoLISP functions only.

Module

(std-require 'STDFILE)

#- SMALL

Defined in STDFILE