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.181.314 Times

File Access Is Not Authorized freeware
Filter: All | Freeware | Demo
 

File Access Is Not Authorized

< 1 2 3 4 5 
Added: May 13, 2010 | Visits: 837

File::Repl File::Repl is a Perl module that provides file replication utilities. SYNOPSIS use File::Repl; %con = { dira => C:/perl, dirb => M:/perl, verbose => 1, age => 10, }; $ref=File::Repl->New(%con); $r1 = $ref->Update(.p(l|m),a<>b,1); $r2 = $ref->Update(.t.*,a<>b,1,.tmp$); The...



Platforms: *nix

License: Freeware Size: 15.36 KB Download (96): File::Repl Download

Added: January 05, 2010 | Visits: 910

File::BasicFlock File::BasicFlock is a Perl module for file locking with flock. SYNOPSIS use File::BasicFlock; lock($filename); lock($filename, shared); lock($filename, undef, nonblocking); lock($filename, shared, nonblocking); unlock($filename); Lock files using the flock() call. The file to be...





Platforms: *nix

License: Freeware Size: 3.07 KB Download (100): File::BasicFlock Download

Added: January 12, 2010 | Visits: 734

File::RdistByRsync File::RdistByRsync is a Perl module that can read rdist distfiles, emulate using rsync. SYNOPSIS use File::RdistByRsync @dist_blocks = parse_rdist($distfile, %options) ($args, $extras, @dist_blocks) = rdist(@ARGV); rsync(@ARGV) perl -MFile::RdistByRsync -e rsync(qw/rdist command...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (89): File::RdistByRsync Download

Added: March 06, 2010 | Visits: 733

File::FindByRegex File::FindByRegex is a Perl wrapper for File::Find that finds a directory tree and runs some action for each file whose name matchs a regex. SYNOPSYS use File::FindByRegex; $find = File::FindByRegex->new( { -srcdir => [C:tmpteradata-sql], -tardir => C:tmpteradata-sqldoc, -find =>...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (92): File::FindByRegex Download

Added: March 18, 2010 | Visits: 1.452

File::Find File::Find is a Perl module to traverse a directory tree. SYNOPSIS use File::Find; find(&wanted, @directories_to_search); sub wanted { ... } use File::Find; finddepth(&wanted, @directories_to_search); sub wanted { ... } use File::Find; find({ wanted => &process, follow => 1 }, .);...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (96): File::Find Download

Added: June 14, 2010 | Visits: 1.237

File::Listing File::Listing is a Perl module to parse directory listing. SYNOPSIS use File::Listing qw(parse_dir); for (parse_dir(`ls -l`)) { ($name, $type, $size, $mtime, $mode) = @$_; next if $type ne f; # plain file #... } # directory listing can also be read from a file open(LISTING, "zcat...


Platforms: *nix

License: Freeware Size: 235.52 KB Download (102): File::Listing Download

Added: August 14, 2010 | Visits: 1.400

File::Backup File::Backup is a Perl module for easy file backup & rotation automation. SYNOPSIS use File::Backup; backup( from => "/source/path", to => "/destination/path" ); backup( from => "/kansas/*", to => "/oz" ); purge_backups( to => "/destination/path", compress => 0, keep => 5, timeformat...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (101): File::Backup Download

Added: October 21, 2010 | Visits: 1.058

GNOME Structured File Library GNOME Structured File Library is a utility library for reading and writing structured file formats. Support for MS OLE2 streams is complete, as is zip import. There is also support for document metadata and some initial work on decompressing VBA streams in OLE files for future conversion to...


Platforms: *nix

License: Freeware Size: 716.8 KB Download (94): GNOME Structured File Library Download

Added: August 14, 2010 | Visits: 1.154

File::Signature File::Signature is a Perl module to detect changes to a files content or attributes. SYNOPSIS use File::Signature; my $sig = File::Signature->new(/some/file); # If you have a stringified signature stored in $string # you can create a File::Signature object from it. my $sig =...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (97): File::Signature Download

Added: April 04, 2010 | Visits: 1.511

File::Mirror File::Mirror is a Perl extension for recursive directory copy. SYNOPSIS use File::Mirror; # recurvie copy /path/A to /path/B mirror /path/A, /path/B; # or do things you like recursive { my ($from, $to) = @_; copy($from, $to) } /path/A, /path/B; File::Mirror provides two helper...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (140): File::Mirror Download

Added: July 11, 2010 | Visits: 1.483

The Featurific File Manager 0.2.0 The Featurific File Manager is a file manager with many useful features. It allows a user to filter, sort, view, learn info about, and use files very easily and quickly. It relies on plugins to supply views of a directory and is intended to be powerful and easy to use. Whats New in This...


Platforms: *nix

License: Freeware Size: 153.6 KB Download (108): The Featurific File Manager 0.2.0 Download

Added: October 22, 2010 | Visits: 1.089

Log::Dispatch::File::Alerts Log::Dispatch::File::Alerts is a Perl object for logging to alert files. SYNOPSIS use Log::Dispatch::File::Alerts; my $file = Log::Dispatch::File::Alerts->new( name => file1, min_level => emerg, filename => Somefile%d{yyyy!!!!}.log, mode => append ); $file->log( level => emerg,...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (92): Log::Dispatch::File::Alerts Download

Added: May 21, 2010 | Visits: 1.245

File-center File-center is a simple Web application to download and upload files. Its interface is very simple, and the scripts to download and upload are simple too. File-center uses the PATH_INFO to pass the name of the directory or of the file in the URL..


Platforms: *nix

License: Freeware Size: 6.14 KB Download (119): File-center Download

Added: May 22, 2010 | Visits: 999

File::MMagic File::MMagic is a Perl module to guess file type. SYNOPSIS use File::MMagic; use FileHandle; $mm = new File::MMagic; # use internal magic file # $mm = File::MMagic->new(/etc/magic); # use external magic file # $mm = File::MMagic->new(/usr/share/etc/magic); # if you use Debian $res =...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (96): File::MMagic Download

Added: March 13, 2010 | Visits: 1.319

File Beamer File Beamer is an easy to use file transfer tool. The programm is platform independent. That means it runs with Windows 98/ME/2000/XP, Linux, Unix and MacOS X. This is made possible by using Trolltechs Qt Library which provides an easy to use GUI toolkit, networking functions and a lot more....


Platforms: *nix

License: Freeware Size: 2.8 MB Download (122): File Beamer Download

Added: September 11, 2010 | Visits: 1.201

File::Comments File::Comments is a Perl module that ecognizes file formats and extracts format-specific comments. SYNOPSIS use File::Comments; my $snoop = File::Comments->new(); # *---------------- # | program.c: # | /* comment */ # | main () {} # *---------------- my $comments =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (90): File::Comments Download

Added: August 12, 2010 | Visits: 630

File::Glob File::Glob is a Perl extension for BSD glob routine. SYNOPSIS use File::Glob :glob; @list = bsd_glob(*.[ch]); $homedir = bsd_glob(~gnat, GLOB_TILDE | GLOB_ERR); if (GLOB_ERROR) { # an error occurred reading $homedir } ## override the core glob (CORE::glob() does this automatically...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (87): File::Glob Download

Added: April 05, 2010 | Visits: 1.232

File::Remote File::Remote is a Perl module to read/write/edit remote files transparently. SYNOPSIS # # Two ways to use File::Remote # # First, the function-based style. Here, we can use the # special :replace tag to overload Perl builtins! # use File::Remote qw(:replace); # special :replace tag #...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (92): File::Remote Download

Added: August 27, 2010 | Visits: 2.177

Simple File Transfer Simple File Transfer is a pure useless program which allows you exchange files with remote computers via Internet. This program has been written for personnal use, so dont blame me if you think I am stupid doing such tool for the others. It should run on every POSIX compliant Operating System,...


Platforms: *nix

License: Freeware Size: 90.11 KB Download (195): Simple File Transfer Download

Added: February 22, 2010 | Visits: 1.081

Browser Bookmarks Menu Browser Bookmarks Menu is a small Gnome applet to allow easy access to your browsers bookmarks, even when your browser is not open. This applet is like the Bookmarks menu of your preferred browser (e.g. Epiphany, Firefox), but lives in the panel, like the Gnome Menu Bar. This means that it is...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (93): Browser Bookmarks Menu Download

< 1 2 3 4 5