Jump to content

Recommended Posts

Posted

Hi! Please, help

I want to very quickly cut a small piece of a large binary file at the end. This piece (5 KB) I need. I am using:

# Include "Binary.au3"

$ bData = FileRead ($hFile)

$ bData = _BinaryRight ($bData, 5000)

FileClose ($ hFile)

This works for a long time. How can I do differently?

TNX ;)

Posted

That will only work with the other WinAPI functions. He needs to use the native function FileSetPos before using FileRead.

Good thing you pointed that out, I've been up too damn long today.

Posted (edited)

YES! thank you very much!

#include <Constants.au3>

$hFile = FileOpen ($hFile, 16)

FileSetPos ( $hFile, -5000, 2 )

$bData = FileRead ( $hFile )

FileClose ( $hFile )

This work very fast ;) Edited by scon

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
  • Recently Browsing   0 members

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