2

In perl:

I have a file opened in read/write, with an exclusive lock.

open( $f, "+< $filename" );
flock( $f, LOCK_EX );

If I write more data to the file than it previously held, the file will grow.
If I write less data, my new contents are at the beginning, but the old contents are still there at the end of the file.

This isn't surprising, however it's not what I want.

Is there a simple way to shrink the file while it is opened in read/write? Basically I want to tell it to end the file at exactly this byte position.

I know I can open it differently, and I'm considering doing that, but a one line fix would be nice.

tshepang
  • 12,111
  • 21
  • 91
  • 136
Brock
  • 160
  • 7

2 Answers2

1

truncate

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358
1

I actually don't know about perl, but since ftruncate(2) would be the C function, maybe this helps?

dennycrane
  • 2,301
  • 18
  • 15