/
writeProfileString

writeProfileString

Description

Writes a string value to the user's profile.

Profile values are identified by their section (sections begin with [section name]) and by the entry (or key) name.

Section groupings allow values to be organized in logical groups. They also allow values with the same name to be differentiated between different groups.

Specifying -file allows the values to be written to a file of the user's choice.

The file does not have to have an "ini" extension.

Note that some users use the profile (or other file) as a "global variable" mechanism. While this is still supported, it is not recommended and has been superseded by actual global variables which allow you to have variables that persist between script executions. For more information, see setGlobalVar (and related commands).

Functional area

System

Command syntax

Syntax

writeProfileString "sectionHeader" "entry" "value" [-file string]

Arguments

Name Type Required Comments
sectionHeader string yes Logical grouping of the value. The section header is the part of the profile which is enclosed in square brackets (e.g. [My Section])
entry string yes The entry name. This will be the first value on the line followed by an = sign.
value string yes Value to write to the profile.

Flags

Name Flag arguments Argument type Exclusive to Comments
file 1 string Redirects output to another text file. Default is to output to user profile (.ini file).

Return value

boolean

Returns true if the value was successfully written, otherwise false.

Examples

// Store some information in the profile
string $value;
// Write to Section 1
writeProfileString "Section1" "Value1" "Hello";
writeProfileString "Section1" "Value2" "World";
// Write to Section 2
writeProfileString "Section2" "Value1" "Scripting";
writeProfileString "Section2" "Value2" "is cool";

/* Will produce output like this 
[Section1]
Value1=Hello
Value2=World
  
[Section2]
Value1=Scripting
Value2=is cool
*/

$value = `getProfileString "Section1" "Value1" ""`; // retrieve $value
print $value;

Additional information

Related commands