Search results for "module:File::Spec::Functions"
File::Spec::Functions - portably perform operations on file names
This module exports convenience functions for all of the class methods provided by File::Spec. For a reference of available functions, please consult File::Spec::Unix, which contains the entire set, and which is inherited by the modules for other pla...
XSAWYERX/PathTools-3.75 - 29 Aug 2018 19:53:19 UTC
File::is - file is older? oldest? is newer? newest? similar? the same?
This module is a result of /me not wanting to write: if ($(stat('filename'))[9] < $(stat('tmp/other-filename'))[9]) { do_someting(); }; Instead I wrote a module with ~80 lines of code and ~90 lines of tests for it... So how is the module different fr...
JKUTEJ/File-is-0.04 - 12 Oct 2017 06:54:39 UTC
File::cd - Easily and safely change directory
The global (and negative) effect of perl builtin function "chdir" is well known (see File::chdir's documentation for more details). And few modules have been created to solve this problem: * File::chdir, by David Golden. * File::pushd, also by David ...
SYALTUT/File-cd-0.003 - 23 Sep 2013 06:55:30 UTC
File::Spec - portably perform operations on file names
This module is designed to support operations commonly performed on file specifications (usually called "file names", but not to be confused with the contents of a file, or Perl's file handles), such as concatenating several directory and file names ...
XSAWYERX/PathTools-3.75 - 29 Aug 2018 19:53:19 UTC
File::Temp - return name and handle of a temporary file safely
"File::Temp" can be used to create and open temporary files in a safe way. There is both a function interface and an object-oriented interface. The File::Temp constructor or the tempfile() function can be used to return the name and the open filehand...
ETHER/File-Temp-0.2311 - 03 Oct 2020 04:04:55 UTC
Nile::File - Files and folders manager.
The file object provides tools for reading files, folders, and most of the functions in the modules File::Spec and File::Basename. to get file content as single string or array of strings: $content = $app->file->get($file); @lines = $app->file->get($...
MEWSOFT/Nile-0.55 - 14 Oct 2014 09:32:49 UTC
File::Util - Easy, versatile, portable file handling
File::Util provides a comprehensive toolbox of utilities to automate all kinds of common tasks on files and directories. Its purpose is to do so in the most portable manner possible so that users of this module won't have to worry about whether their...
TOMMY/File-Util-4.201720 - 20 Jun 2020 01:38:34 UTC
File::Flat - 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...
ETHER/File-Flat-1.07 - 23 Aug 2020 21:49:12 UTC
File::Tools - UNIX tools implemented as Perl Modules and made available to other platforms as well
SZABGAB/File-Tools-0.10
-
02 Jun 2023 07:07:20 UTC
File::pushd - change directory temporarily for a limited scope
File::pushd does a temporary "chdir" that is easily and automatically reverted, similar to "pushd" in some Unix command shells. It works by creating an object that caches the original working directory. When the object is destroyed, the destructor ca...
DAGOLDEN/File-pushd-1.016 - 20 May 2018 17:33:51 UTC
File::Slurp - Simple and Efficient Reading/Writing/Modifying of Complete Files
This module provides subs that allow you to read or write entire files with one simple call. They are designed to be simple to use, have flexible ways to pass in or get the file contents and to be very efficient. There is also a sub to read in all th...
CAPOEIRAB/File-Slurp-9999.32 - 01 Jul 2020 00:34:08 UTC
File::Which - Perl implementation of the which utility as an API
File::Which finds the full or relative paths to executable programs on the system. This is normally the function of "which" utility. "which" is typically implemented as either a program or a built in shell command. On some platforms, such as Microsof...
PLICEASE/File-Which-1.27 - 07 May 2021 10:55:36 UTC
File::Object - Object system for filesystem paths.
This provides an object oriented interface to file/directory paths, such as actual, parent or explicit directory and relative paths to them....
SKIM/File-Object-0.18 - 28 Feb 2023 15:12:05 UTC
File::BaseDir - Use the Freedesktop.org base directory specification
This module can be used to find directories and files as specified by the Freedesktop.org Base Directory Specification. This specifications gives a mechanism to locate directories for configuration, application data and cache data. It is suggested th...
PLICEASE/File-BaseDir-0.09 - 08 Jul 2021 20:04:54 UTC
File::ExtAttr - Perl extension for accessing extended attributes of files
File::ExtAttr is a Perl module providing access to the extended attributes of files. Extended attributes are metadata associated with a file. Examples are access control lists (ACLs) and other security parameters. But users can add their own key=valu...
RICHDAWE/File-ExtAttr-1.09 - 07 Mar 2009 10:37:45 UTCFile::ShareDir - Locate per-dist and per-module shared files
The intent of File::ShareDir is to provide a companion to Class::Inspector and File::HomeDir, modules that take a process that is well-known by advanced Perl developers but gets a little tricky, and make it more available to the larger Perl community...
REHSACK/File-ShareDir-1.118 - 21 Oct 2020 06:15:18 UTC
File::Basename - Parse file paths into directory, filename and suffix.
These routines allow you to parse file paths into their directory, filename and suffix. NOTE: "dirname()" and "basename()" emulate the behaviours, and quirks, of the shell and C functions of the same name. See each function's documentation for detail...
RJBS/perl-5.38.0 - 02 Jul 2023 23:00:28 UTC
File::Basename - Parse file paths into directory, filename and suffix.
These routines allow you to parse file paths into their directory, filename and suffix. NOTE: "dirname()" and "basename()" emulate the behaviours, and quirks, of the shell and C functions of the same name. See each function's documentation for detail...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
File::PlainPath - Construct portable filesystem paths in a simple way
File::PlainPath translates filesystem paths that use a common directory separator to OS-specific paths. It allows you to replace constructs like this: my $path = File::Spec->catfile('dir', 'subdir', 'file.txt'); with a simpler notation: my $path = pa...
ODYNIEC/File-PlainPath-0.030 - 06 Nov 2013 08:13:09 UTC
File::Find::Rex - Combines simpler File::Find interface with support for regular expression search criteria.
This module provides an easy to use object oriented interface to "File::Find" and adds the ability to filter results using regular expressions. Features include: * Object oriented interface * Find results returned as array or via a callback subroutin...
ROLANDAY/File-Find-Rex-1.02 - 16 Oct 2018 08:12:20 UTC