Go to documentation repository
Page History
The WriteIni method is used for writing to write the string variable to the ini - file.
Method call syntaxSyntax for method invocation:
Code Block |
---|
function WriteIni(varName: String, varValue: String, path: String) |
Method argument:
varName – is a required argument. Sets name of It specifies the name of the variable for saving storing in the file.
varValue – is a required argument. Sets It specifies the value of t the variable.
path – is a required argument. Sets It specifies the full path to the ini - file in which the variable is to must be stored. Storage of variables can be replaced placed on the network resource. Enter To do this, enter the network path in the argument for it.
Example. Write the MyVar variable to the \\fsfileserver\temp\test.ini file and specify set the «Helloworld"Hello world!” " value to it. Then read the written value and display it on in the script debug window.
Code Block |
---|
WriteIni("MyVar", "Hello world", "\\\\fsfileserver\\temp\\test.ini"); var result = ReadIni("MyVar","\\\\fsfileserver\\temp\\test.ini"); DebugLogString(result); |