2012-12-17 57 views

回答

1

創建(文本)文件,並寫入8 MB的數據:

dir 
... 
       0 File(s)    0 bytes 

>> Dim oFS : Set oFS = CreateObject("Scripting.FileSystemObject") 
>> oFS.CreateTextFile("8mb.txt", True).Write String(8000000,"x") 

dir 
... 
17.12.2012 18:00   8.000.000 8mb.txt 
+0

是的,但我怎麼能告訴我已經填補了8MB的數據? –

+0

@CocoaDev - 你不需要被告知,因爲你要求String()函數生成8 MB數據。 –

相關問題