DataCreateTextFile Method |
Creates a new text file for writing.
Namespace: LandisAssembly: Landis.Core (in Landis.Core.dll) Version: 6.1.5452.26346
Syntaxpublic static StreamWriter CreateTextFile(
string path
)
Public Shared Function CreateTextFile (
path As String
) As StreamWriter
public:
static StreamWriter^ CreateTextFile(
String^ path
)
static member CreateTextFile :
path : string -> StreamWriter
Parameters
- path
- Type: SystemString
Path of the text file.
Return Value
Type:
StreamWriter[Missing <returns> documentation for "M:Landis.Data.CreateTextFile(System.String)"]
Remarks
If the path contains any directories that does not exists, they
are created.
If the file already exists, its current contents are overwritten.
See Also