Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.368.866 Times

File::stat 0.1

  Date Added: November 04, 2010  |  Visits: 1.098

File::stat

Report Broken Link
Printer Friendly Version


Product Homepage
Download (108 downloads)



File::stat is a by-name interface to Perls built-in stat() functions. SYNOPSIS use File::stat; $st = stat($file) or die "No $file: $!"; if ( ($st->mode & 0111) && $st->nlink > 1) ) { print "$file is executable with lotsa linksn"; } use File::stat qw(:FIELDS); stat($file) or die "No $file: $!"; if ( ($st_mode & 0111) && $st_nlink > 1) ) { print "$file is executable with lotsa linksn"; } This modules default exports override the core stat() and lstat() functions, replacing them with versions that return "File::stat" objects. This object has methods that return the similarly named structure field name from the stat(2) function; namely, dev, ino, mode, nlink, uid, gid, rdev, size, atime, mtime, ctime, blksize, and blocks. You may also import all the structure fields directly into your namespace as regular variables using the :FIELDS import tag. (Note that this still overrides your stat() and lstat() functions.) Access these fields as variables named with a preceding st_ in front their method names. Thus, $stat_obj->dev() corresponds to $st_dev if you import the fields. To access this functionality without the core overrides, pass the use an empty import list, and then access function functions with their full qualified names. On the other hand, the built-ins are still available via the CORE:: pseudo-package..

Requirements: No special requirements
Platforms: Linux
Keyword: Built-in File Filestat Import Interface Libraries Perls Programming Stat
Users rating: 0/10

License: Freeware Size: 14.2 MB
USER REVIEWS
More Reviews or Write Review


FILE::STAT RELATED
Programming  -  Cerolobo Parser 8.9
Provides a generic parser and lexical analysis interface with built in file I/O, regular expressions, globbing support, dynamically definable tokens, callbacks, and a variety of other features.
94.04 KB  
Libraries  -  java data object persistence in file 3.1.0b1
Make java data object persistent in file system whithout database. Between serialization in file and database. Cache your data model in file. Manage more objects than memory can contains
1.17 MB  
3D Graphic Tools  -  Redstone FileGarden 1.2.5C-05-10-2006
Redstone FileGarden comes with an editor and a built-in file manager which support MIME and default file extensions. Redstone FileGarden can convert text to PostScript and PDF, perform image conversion, and supports custom scripting, batch...
1.5 MB  
Internet Client Suites  -  Emerald P2P UltraPeer 2.8.0
EMERALD P2P UltraPeer is a very fast and precise download service which provides a built-in file search engine and chat functions. Using the service is extremely intuitive and you feel you are one click away from downloading any MP3 files, MPEGS...
5.39 MB  
Network & Internet  -  MacNikto for Mac OS 1.1.1
An AppleScript GUI shell script wrapper built in Apples Xcode and Interface Builder, released under the terms of the GPL. It provides easy access to a subset of the features available in the Open Source, command-line driven Nikto web security...
4.2 MB  
File Utilities  -  Resource Extractor 1.0
Resource Extractor extracts built-in resources from Win32 executable file types. Such resources are icons, bitmaps, sounds, animations, etc. You could use a file mask (For example: C:WINDOWS*.*) for batch processing. It is possible to avoid the...
 
E-Mail Tools  -  DGS SMTP 0.9.1
DGS SMTP is a PHP class which acts as an email client, able to send an email without using PHPs built in mail() function. This is most often useful for sites that are unable to get PHPs build in mail() function to work. (Usually because they...
14.34 KB  
Libraries  -  Variable::Strongly::Typed::Validators 1.1.0
Variable::Strongly::Typed::Validators is Perl module with built-in type validators. SYNOPSIS This class is utilized by Variable::Strongly::Typed - you dont access this directly. This module defines a %conditions hash contained expressions that...
10.24 KB  
File Sharing  -  BitTorrent Queue Manager 0.1.3
BitTorrent Queue Manager is a console-based BitTorrent client running on top of BitTornado that provides built-in queue management functions. BitTorrent Queue Manager also provides a remote interface compatible with ABC for Web-based control....
2 MB  
MP3 Tools  -  MooSick Minimal Music Player for Mac and Linux 0.08
MooSick is a free mplayer-based Music Player with a built-in Song Database, Websearch, Streaming and Download Tools and several Audio Effects including Speed Control, Pitch Change, Dynamics Processing, "Live"-, Headphone- and Karaoke Filters and...
143 KB  
NEW DOWNLOADS IN PROGRAMMING, LIBRARIES
Programming  -  Cedalion for Linux 0.2.6
Cedalion is a programming language that allows its users to add new abstractions and define (and use) internal DSLs. Its innovation is in the fact that it uses projectional editing to allow the new abstractions to have no syntactic limitations.
471.04 KB  
Programming  -  Math::GMPf 0.29
Math::GMPf - perl interface to the GMP library's floating point (mpf) functions.
30.72 KB  
Programming  -  Net::Wire10 1.08
Net::Wire10 is a Pure Perl connector that talks to Sphinx, MySQL and Drizzle servers. Net::Wire10 implements the low-level network protocol, alias the MySQL wire protocol version 10, necessary for talking to one of the aforementioned...
30.72 KB  
Programming  -  logilab-common 0.56.2
a bunch of modules providing low level functionnalities shared among some python projects devel Please note that some of the modules have some extra dependencies. For instance, logilab.common.db will require a db-api 2.0 compliant...
174.08 KB  
Programming  -  OpenSSL for linux 1.0.0a
The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a...
3.83 MB  
Libraries  -  wolfSSL 4.0.0
The wolfSSL embedded SSL/TLS library is a lightweight SSL library written in ANSI standard C and targeted for embedded and RTOS environments - primarily because of its small size, speed, and feature set. It is commonly used in standard operating...
3.88 MB  
Libraries  -  EuGTK 4.8.9
Makes it easy to develop good- looking, fast, cross-platform programs that run on Linux, OS X, and Windows. Euphoria is a very fast interpreted/compiled language with straight-forward syntax. EuGTK allows programming in a clean, object-oriented...
10.68 MB  
Libraries  -  Linux User Group Library Manager 1.0
The LUG Library Manager is a project to help Linux User Groups start their own library. A LUG library is helpful to the community at large because it increases access to information, and gives everyone the opportunity to become more knowledgeable.
5.35 KB  
Libraries  -  Module::MakefilePL::Parse 0.12
Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", ) ); $info = $parser->required;...
8.19 KB  
Libraries  -  sqlpp 0.06
sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also...
10.24 KB