shiv Posted November 26, 2013 Posted November 26, 2013 Greetings Hi I want to create a file of size 485 KB. How can i do that Thanks
michaelslamet Posted November 26, 2013 Posted November 26, 2013 Maybe this? By KaFu: '?do=embed' frameborder='0' data-embedContent>> #include <Constants.au3> Local Const $sFile = "test.txt" Local $hFile = FileOpen($sFile, 2) ; Check if file opened for writing OK If $hFile = -1 Then MsgBox(0, "Error", "Unable to open file.") Exit EndIf FileSetPos($hFile, (1024*1024*100)-1, $FILE_BEGIN) FileWrite($hFile, 0) ; Close the handle. FileClose($hFile
shiv Posted November 26, 2013 Author Posted November 26, 2013 michaelslamet This will create file of 100 mb. but i want to create file of 485 kb Thanks
michaelslamet Posted November 26, 2013 Posted November 26, 2013 michaelslamet This will create file of 100 mb. but i want to create file of 485 kb Thanks Why would that be a problem? Just replace this: FileSetPos($hFile, (1024*1024*100)-1, $FILE_BEGIN) to this: FileSetPos($hFile, (1024*485)-1, $FILE_BEGIN) Untested
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now