Functions for filehandles, files, or directories in perl
by kalai[ Edit ] 2008-11-22 20:32:43
* -X - a file test (-r, -x, etc)
* chdir - change your current working directory
* chmod - changes the permissions on a list of files
* chown - change the owership on a list of files
* chroot - make directory new root for path lookups
* fcntl - file control system call
* glob - expand filenames using wildcards
* ioctl - system-dependent device control system call
* link - create a hard link in the filesytem
* lstat - stat a symbolic link
* mkdir - create a directory
* open - open a file, pipe, or descriptor
* opendir - open a directory
* readlink - determine where a symbolic link is pointing
* rename - change a filename
* rmdir - remove a directory
* stat - get a file's status information
* symlink - create a symbolic link to a file
* sysopen - open a file, pipe, or descriptor
* umask - set file creation mode mask
* unlink - remove one link to a file
* utime - set a file's last access and modify times