AddString¶
Adds a new text file to the repository and returns the created FileInfo.
myFiles.AddString(content: string, name: string, codePage?: number):FileInfo (FileInfo)
Parameters¶
string content
The content of the file.
string name
The name of the file.
number codePage optional
The code page of the string. If not specified, UTF8 encoding is used.
Returns¶
The created FileInfo.
Remarks¶
Create a tab-delimited text document from XML data¶
1 2 3 4 5 6 7 8 9 10 11 12 | |