Garry's Mod Wiki

file.Append

  boolean file.Append( string name, string content )

Description

Appends a file relative to the data folder.

Arguments

1 string name
The file's name.
2 string content
The content which should be appended to the file.

Returns

1 boolean
If the operation was successful

Example

Adds "Append!" to helloworld.txt, then prints it.

file.Append( "helloworld.txt", "Append!" ) print( file.Read( "helloworld.txt", "DATA" ) )
Output: This is the content!Append!