in reply to Re^3: if -s clause on a FILEHANDLE
in thread if -s clause on a FILEHANDLE

Is there a ideal way to "touch" a file instead of opening a file then >$foo it? for example,
my $foo="/tmp/ftapes_runfile"; open (RUNFILE, ">$foo") || die "could not open runfile: $!;" close (RUNFILE);
thanks!