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

File Recover freeware
Filter: All | Freeware | Demo
 

File Recover

< 1 2 3 4 5 
Added: August 22, 2010 | Visits: 1.433

File::Find::Closures File::Find::Closures is a Perl module with functions you can use with File::Find. SYNOPSIS use File::Find; use File::Find::Closures qw(:all); my( $wanted, $list_reporter ) = find_by_name( qw(README) ); File::Find::find( $wanted, @directories ); File::Find::find( { wanted => $wanted, ......



Platforms: *nix

License: Freeware Size: 7.17 KB Download (94): File::Find::Closures Download

Added: June 15, 2010 | Visits: 1.259

File::Sync File::Sync is a Perl access to fsync() and sync() function calls. SYNOPSIS use File::Sync qw(fsync sync); fsync(*FILEHANDLE) or die "fsync: $!"; sync(); use File::Sync qw(fsync); use IO::File; $fh = IO::File->new("> /tmp/foo") or die "new IO::File: $!"; ... fsync($fh) or die "fsync:...





Platforms: *nix

License: Freeware Size: 4.1 KB Download (112): File::Sync Download

Added: October 17, 2010 | Visits: 1.091

File::Sort File::Sort is a Perl module to sort a file or merge sort multiple files. SYNOPSIS use File::Sort qw(sort_file); sort_file({ I => [qw(file_1 file_2)], o => file_new, k => 5.3,5.5rn, -t => | }); sort_file(file1, file1.sorted); This module sorts text files by lines (or records)....


Platforms: *nix

License: Freeware Size: 32.77 KB Download (94): File::Sort Download

Added: May 14, 2010 | Visits: 983

PostScript::File PostScript::File is a Perl base class for creating Adobe PostScript files. SYNOPSIS use PostScript::File qw(check_tilde check_file incpage_label incpage_roman); Simplest An hello world program: use PostScript::File; my $ps = new PostScript::File(); $ps->add_to_page( <


Platforms: *nix

License: Freeware Size: 22.53 KB Download (118): PostScript::File Download

Added: June 01, 2010 | Visits: 1.103

File File is the open source implementation of the file command used on almost every free operating system (OpenBSD, Linux, FreeBSD, NetBSD) and also on systems that use free software (including OS/2, DOS, MS Windows, etc.). The file command, if youre not familiar with it, is a command-line tool...


Platforms: *nix

License: Freeware Size: 542.72 KB Download (115): File Download

Added: August 18, 2010 | Visits: 787

File::RsyncP::Digest File::RsyncP::Digest is a Perl interface to rsync message digest algorithms. SYNOPSIS use File::RsyncP::Digest; $rsDigest = new File::RsyncP::Digest; # specify rsync protocol version (default is <= 26 -> buggy digests). $rsDigest->protocol(version); # file MD4 digests...


Platforms: *nix

License: Freeware Size: 153.6 KB Download (95): File::RsyncP::Digest Download

Added: August 27, 2010 | Visits: 1.010

File::pushd File::pushd is a Perl module to change directory temporarily for a limited scope. SYNOPSIS use File::pushd; chdir $ENV{HOME}; # change directory again for a limited scope { my $dir = pushd( /tmp ); # working directory changed to /tmp } # working directory has reverted to $ENV{HOME}...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (100): File::pushd Download

Added: November 04, 2010 | Visits: 1.208

gFast File gFast File is a file manager like Konqueror or Nautilus. You can work with your files with classical operations: Copy, Move, Rename and Open like others but with gFast File you have a work queue with all your operations. gFast File work to complete all task without your attention. gFast File is...


Platforms: *nix

License: Freeware Size: 829.44 KB Download (101): gFast File Download

Added: June 14, 2010 | Visits: 1.215

Net::FTP::File Net::FTP::File is a Perl extension for simplifying FTP file operations. SYNOPSIS use Net::FTP::File; my $ftp = Net::FTP->new("some.host.name", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->login("anonymous",-anonymous@) or die "Cannot login ", $ftp->message;...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (104): Net::FTP::File Download

Added: February 04, 2010 | Visits: 773

File::VirtualPath File::VirtualPath is a portable abstraction of a file/dir/url path. SYNOPSIS Content of thin shell "startup.pl": #!/usr/bin/perl use strict; use warnings; my $root = "/home/johndoe/projects/aardvark"; my $separator = "/"; if( $^O =~ /Win/i ) { $root = "c:projectsaardvark";...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (89): File::VirtualPath Download

Added: May 13, 2010 | Visits: 835

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 17, 2010 | Visits: 1.064

File::Flock File::Flock is a Perl module for file locking with flock. SYNOPSIS use File::Flock; lock($filename); lock($filename, shared); lock($filename, undef, nonblocking); lock($filename, shared, nonblocking); unlock($filename); my $lock = new File::Flock /somefile;...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (115): File::Flock 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 (99): File::BasicFlock Download

Added: January 12, 2010 | Visits: 731

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: January 01, 2010 | Visits: 1.298

File::Stat::ModeString File::Stat::ModeString - conversion file stat mode to/from string representation. SYNOPSIS use File::Stat::ModeString; $string = mode_to_string ( $st_mode ); $st_mode = string_to_mode ( $string ); $type = mode_to_typechar( $st_mode ); $record = < IN >; chomp $record; $record =~...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (98): File::Stat::ModeString Download

Added: August 17, 2010 | Visits: 1.312

Audio::TagLib::MPEG::File Audio::TagLib::MPEG::File is an MPEG file class with some useful methods specific to MPEG. SYNOPSIS use Audio::TagLib::MPEG::File; my $i = Audio::TagLib::MPEG::File->new("sample file.mp3"); print $i->tag()->artist()->toCString(), "n"; # got artist This implements the generic...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (124): Audio::TagLib::MPEG::File Download

Added: March 05, 2010 | Visits: 1.173

Audio::TagLib::MPC::File Audio::TagLib::MPC::File is an implementation of Audio::TagLib::File with MPC specific methods. SYNOPSIS use Audio::TagLib; my $i = Audio::TagLib::MPC::File->new("sample mpc file.mpc"); print $i->tag()->title()->toCString(), "n"; # got title This implements and provides an interface for...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (107): Audio::TagLib::MPC::File Download

Added: February 03, 2010 | Visits: 1.210

Audio::TagLib::File Audio::TagLib::File is a file class with some useful methods for tag manipulation. This class is a basic file class with some methods that are particularly useful for tag editors. It has methods to take advantage of ByteVector and a binary search method for finding patterns in a file....


Platforms: *nix

License: Freeware Size: 1.4 MB Download (114): Audio::TagLib::File Download

Added: March 17, 2010 | Visits: 1.511

Audio::TagLib::Vorbis::File Audio::TagLib::Vorbis::File is an implementation of Ogg::File with Vorbis specific methods. SYNOPSIS use Audio::TagLib::Vorbis::File; my $i = Audio::TagLib::Vorbis::File->new("sample vorblis file.ogg"); print $i->tag()->comment()->toCString(), "n"; # got comment This is the central class...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (299): Audio::TagLib::Vorbis::File Download

Added: June 24, 2010 | Visits: 1.291

Audio::TagLib::Ogg::FLAC::File Audio::TagLib::Ogg::FLAC::File is an implementation of Audio::TagLib::File with Ogg/FLAC specific methods. SYNOPSIS use Audio::TagLib::Ogg::FLAC::File; my $i = Audio::TagLib::Ogg::FLAC::File->new("sample file.flac"); print $i->tag()->album()->toCString(), "n"; # got album This implements...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (101): Audio::TagLib::Ogg::FLAC::File Download

< 1 2 3 4 5