domingo, 17 de julho de 2016

VB.Net Criando um novo arquivo

Este exemplo cria um arquivo de texto vazio no caminho especificado usando o método Create na classe File.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
Imports System
Imports System.IO
Imports System.Text

Module Module1

    Sub Main()
        Dim path As String = "c:\temp\MyTest.txt"

        ' Create or overwrite the file.
        Dim fs As FileStream = File.Create(path)

        ' Add text to the file.
        Dim info As Byte() = New UTF8Encoding(True).GetBytes("This is some text in the file.")
        fs.Write(info, 0, info.Length)
        fs.Close()
    End Sub

End Module

Nenhum comentário :

Postar um comentário

Related Posts Plugin for WordPress, Blogger...