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
This was recently added in version (2025.01.10). It might only be available on the Dev Branch right now.

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!
OSZAR »