N
newzguy
How do I delete a file's content? I don't want it to
append, I want the contents overwritten, how do I
do it? What I have is:
# Append the fetched data to the local file.
open out, ">>$localfile";
print out $result->content;
close out;
Does the >> have something to do with appending?
thanks
append, I want the contents overwritten, how do I
do it? What I have is:
# Append the fetched data to the local file.
open out, ">>$localfile";
print out $result->content;
close out;
Does the >> have something to do with appending?
thanks