if your goal is to keep the form page in the browser when the file size has not changed, then may I suggest doing this :
if($sz > 0) {
open (FILE, "$filename");
$nuData=<FILE>;
close (FILE);
open (FILE, ">$filename"); # clear file
close (FILE)...