binファイルにバイトを書き込むこの関数があります。
Public Shared Function writeFS(path As String, count As Integer) As Integer
Using writer As New BinaryWriter(File.Open(path, FileMode.Open, FileAccess.Write, FileShare.Write), Encoding.ASCII)
Dim x As Integer
Do Until x = count
writer.BaseStream.Seek(0, SeekOrigin.End)
writer.Write(CByte(&HFF))
x += 1
Loop
End Using
Return -1
End Function
値であるtextBoxがありcount
ます。カウントは、ファイルに書き込むバイト数です。
問題は、1mb以上を書き込みたい場合、サイクルのために10秒以上かかることです。
ファイル時間FF
の終わりに16進値を書き込むためのより良い/より速い方法が必要です。'value'
うまく説明できなくてごめんなさい。