Jump to content

FileOpen($File) Not Read with file *.exe, *.dll, ...?


Recommended Posts

Try opening them with binary reading mode (check out the help). You should keep in mind that MsgBox() can't show special characters, so you have to check success with filewrite. Here's an example code:

CODE
$test = FileOpen( "test.exe", 16 )

$testread = FileRead($test)

FileClose($test)

FileWrite( "tested.exe", $testread )

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...