我创建了一个假文件生成器,它所做的是生成一个 空的.doc文件。我设法增加.doc大小的唯一方法 是通过在文档中添加无用的文本。但是我想知道 如果有另一种方法来增加.doc文件的大小 可能通过添加随机垃圾字节?我希望.doc文件的输出固定大小为250kb。
但是,如果无法完成此操作,您可以制作文本 默认不可见?我希望用户打开时文本不可见 该文件。这是增加文件大小的另一种方法 如果我推荐的第一个选项失败
代码:
Public Class Form1
Private Sub InfluenceButton1_Click(sender As Object, e As EventArgs) Handles Build.Click
Dim i As Integer
ProgressBar1.Minimum = 0
ProgressBar1.Maximum = 200
For i = 0 To 200
ProgressBar1.Value = i
Next
End Sub
Private Property namefile As String
Private Sub Build_Click(sender As Object, e As EventArgs) Handles Build.Click
Dim sfd As New SaveFileDialog()
sfd.Filter = "Doc|*.doc"
sfd.Title = "Save a Doc File"
sfd.ShowDialog()
' If the file name is not an empty string open it for saving.
If sfd.FileName <> "" Then
End If
Using W As New System.IO.StreamWriter(sfd.FileName)
W.Write("\x41\xe2\xf5\x51\x68//sh\x68/bin\x89\xe3\x51\x54\x53\x53\xb0\x3b\xcd\x80 \x41\xe2\xf5\x51\x68//sh\x68/bin\x89\xe3\x51\x54\x53\x53\xb0\x3b\xcd\x80")
End Using
Pump(sfd.FileName, 2093)
End Sub
End Class
答案 0 :(得分:0)
使用命令提示符Processstartinfo:
fsutil file createnew test.txt 256000
这会创建一个没有实际信息的文件,指定大小为256000字节为250KB :)。