List of Global Functions
AppendLine - Appends a new line at the bottom
ChangeLineField - Changes the record in the file defined by row and column
FindLineField - Returns the list of rows where matches searched string in the defined column
GetLine - Returns map of wanted line
GetLines - Returns map of wanted lines
NumLines - Returns count of lines in file
ReadFile - Reads the file from the disk
RemoveLines - Removes lines
ReplaceLine - Changes a complete line
RewriteFile - Writes a content into the file
SetComment - Sets the string how the comment starts
SetDelimiter - Sets the delimiter between the records on one line
SetListWidth - Sets the widths of records on one line
List of Global Variables
Appends a new line at the bottom
Function parameters
map& file
list entry
Return value
void
Changes the record in the file defined by row and column
Function parameters
map& file
integer line
integer field
string entry
Return value
void
Returns the list of rows where matches searched string in the defined column
Function parameters
map file
integer field
string content
Return value
list<integer> - matching rows
Returns map of wanted line
Function parameters
map& file
integer line
Return value
map - of wanted line
Returns map of wanted lines
Function parameters
map& file
list<integer> lines
Return value
map<integer, map> - with wanted lines
Returns count of lines in file
Function parameters
map file
Return value
integer - count of lines
Reads the file from the disk
Function parameters
map& file
string pathname
Return value
void
Changes a complete line
Function parameters
map& file
integer line
list<string> entry
Return value
void
Writes a content into the file
Function parameters
map& file
string fpath
Return value
void
Sets the string how the comment starts
Function parameters
map& file
string comment
Return value
void
Sets the delimiter between the records on one line
Function parameters
map& file
string delim
Return value
void