Lightning flashed, thunder crashed and "Bob Bondi" <[EMAIL PROTECTED]> w
hispered:
| So, simple on Unix/Linux! Are there any solutions via Perl to "touch" a
| binary file?

Unix doesn't differentiate between different types of files.  They are all
just files.  Perl is the same way.  Do you want to touch an existing file
or create a new file?  If you want to touch an existing file, just to
update it's atime/mtime, look at the utime() function.  If you want to
create a new file, open it, write nothing to it, and close it.

-spp

Reply via email to