Skip to content

Instantly share code, notes, and snippets.

@kjunichi
Last active August 9, 2018 06:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjunichi/6431505 to your computer and use it in GitHub Desktop.
Save kjunichi/6431505 to your computer and use it in GitHub Desktop.

文字列をファイルにダンプする

Dim writer As System.IO.StreamWriter
writer = New System.IO.StreamWriter("c:\work\foobar.txt")
writer.Write("hogehoge" & vbCRLF)
writer.Close()
Dim writer As System.IO.StreamWriter
writer = New System.IO.StreamWriter("c:\work\foobar" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".txt")
writer.Write("hogehoge" & vbCRLF)
writer.Close()

XMLをファイルに保存する

Dim xmlDoc As New XmlDocument

' 読み込み処理等

xmlDoc.Save("c:\tmp\"+DateTime.Now.ToString("yyyyMMddHHmmss")+".xml")

関連記事

関連Gist

アクセス解析タグ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment