Как я могу записать шестнадцатеричное значение в файл до тех пор, пока мой байт записи?
Hi How Can ı write "FF" hex value in my file until my write byte ? for example "if ı write textbox "10" and press button after program write 10 mb ff hex value in my file" like this https://i.stack.imgur.com/FxA1r.png ı use this code but write 10 mb files only 1 bytes ff value like this https://i.stack.imgur.com/APCAp.png What I have tried: <pre lang="vb"> Dim hex As String = "FF" Using fs As New FileStream("huge_dummy_file", FileMode.Create, FileAccess.Write) For Each byteHex As String In hex.Split() fs.Seek(TextBox1.Text * 1024 * 1024, SeekOrigin.Begin) fs.WriteByte(Convert.ToByte(byteHex, 16)) Next End Using
Gerry Schmitz
Что вы будете делать, если наберете неправильный номер и он заполнит ваш диск?