Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Zeroing A File

by bluto (Curate)
on Mar 17, 2006 at 21:16 UTC ( [id://537580]=note: print w/replies, xml ) Need Help??


in reply to Zeroing A File

What do you mean by "zero"? Truncate to zero length? Delete?

open my $fh, ">myfile"; # will truncate by opening it for write acces +s truncate "myfile", 0; # will truncate (if it's implemented on your +system) unlink "myfile"; # will remove it
FYI, under unix file ownership has little to do with being able to trucate or delete it. If you are root, you can do either. Otherwise, to truncate you'll need to have write access to the file. To delete it, you'll need write and execute access to the file's parent directory.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://537580]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-04-16 20:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found