in reply to Doing a .sfv checker/creator in Perl...
If the suggestion of Anonymous Monk above doesn't work for you, you should try the simpler and more available method of using binmode after opening your (binary) files, always:
local *SOMEFILE; open(SOMEFILE, $file); binmode(SOMEFILE) my $crc = crc32(*SOMEFILE); close(SOMEFILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Doing a .sfv checker/creator in Perl...
by Ace128 (Hermit) on Oct 06, 2005 at 05:09 UTC |