Ports Search

Results 12,05112,060 of 19,819 for %22HTTP Server%22.(0.011 seconds)
devel/File-Finder-0.53 (Score: 9.2878623E-4)
Nice wrapper for File::Find ala find(1)
File::Find is great, but constructing the wanted routine can sometimes be a pain. This module provides a wanted-writer, using syntax that is directly mappable to the find command's syntax.
devel/File-Flat-1.04 (Score: 9.2878623E-4)
Implements a flat filesystem
File::Flat implements a flat filesystem. A flat filesystem is a filesystem in which directories do not exist. It provides an abstraction over any normal filesystem which makes it appear as if directories do not exist. In effect, it will automatically create directories as needed. This is create for things like install scripts and such, as you never need to worry about the existence of directories, just write to a file, no matter where it is.
devel/File-Flock-2014.01 (Score: 9.2878623E-4)
Perl5 module for file locking with flock
File::Flock is a wrapper around the flock() call. The only thing it does that is special is that it creates the lock file if the lock file does not already exist. It will also try to remove the lock file. This makes it a bit complicated.
devel/File-chdir-0.1010 (Score: 9.2878623E-4)
More sensible way to change directories
Perl's chdir() has the unfortunate problem of being very, very, very global. If any part of your program calls chdir() or if any library you use calls chdir(), it changes the current working directory for the whole program. File::chdir gives you an alternative, $CWD and @CWD. These two variables combine all the power of chdir(), File::Spec and Cwd.
devel/File-chmod-0.32 (Score: 9.2878623E-4)
File::chmod - Implements symbolic and ls chmod modes
File::chmod is a utility that allows you to bypass system calls or bit processing of a file's permissions. It overloads the chmod() function with its own that gets an octal mode, a symbolic mode, or an "ls" mode. If you wish not to overload chmod(), you can export symchmod() and lschmod(), which take, respectively, a symbolic mode and an "ls" mode.
devel/File-pushd-1.005 (Score: 9.2878623E-4)
File::pushd - temporary chdir for a limited scope
File::pushd does a temporary chdir that is easily and automatically reverted. It works by creating a simple object that caches the original working directory. When the object is destroyed, the destructor calls chdir to revert to the original working directory. By storing the object in a lexical variable with a limited scope, this happens automatically at the end of the scope.
devel/FileHandle-Fmode-0.11 (Score: 9.2878623E-4)
Module to determine if a filehandle is opened for reading, writing
Use this module to check whether a filehandle is readable, writable, or readable/writable.
devel/File-FnMatch-0.02 (Score: 9.2878623E-4)
Simple filename and pathname matching
File::FnMatch::fnmatch() provides simple, shell-like pattern matching. Though considerably less powerful than regular expressions, shell patterns are nonetheless useful and familiar to a large audience of end-users.
devel/File-Grep-0.02 (Score: 9.2878623E-4)
Perl Module that Find matches to a pattern in files or function
The File::Grep module is designed for find matches to a pattern in a series of files and related functions.
devel/File-HomeDir-1.00 (Score: 9.2878623E-4)
Get home directory for self or other users
File::HomeDir -- get home directory for self or other users This module provides a function, home, and also ties the in-all-packages variable %~.