Helomotorola 0 Posted September 7, 2007 I can't use FileOpen($File) to open file *.exe If Readable then only tittle??? Please help me Thank much Share this post Link to post Share on other sites
Antiec 0 Posted September 7, 2007 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 ) Share this post Link to post Share on other sites