Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

vbnet create and write on file

Dim strFile As String = "yourfile.txt"
Dim fileExists As Boolean = File.Exists(strFile)
Using sw As New StreamWriter(File.Open(strFile, FileMode.OpenOrCreate))
    sw.WriteLine( _
        IIf(fileExists, _
            "Error Message in  Occured at-- " & DateTime.Now, _
            "Start Error Log for today"))
End Using
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #vbnet #create #write #file
ADD COMMENT
Topic
Name
9+3 =