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 49.600.523 Times

Sis File To Jar File Conveter freeware
Filter: All | Freeware | Demo
 

Sis File To Jar File Conveter

< 1 2 3 4 5 > 
Added: June 15, 2010 | Visits: 1.254

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.086

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: August 18, 2010 | Visits: 781

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.007

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 (99): File::pushd Download

Added: January 01, 2010 | Visits: 1.294

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 (92): File::Stat::ModeString Download

Added: August 17, 2010 | Visits: 1.308

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 (117): Audio::TagLib::MPEG::File Download

Added: May 22, 2010 | Visits: 1.229

File::LckPwdF File::LckPwdF is a Perl module to lock and unlock the passwd and shadow files with lckpwdf and ulckpwdf. SYNOPSIS use File::LckPwdF; (lock_passwd(15)) || (die "Cant lock password file:n$! stopped"); # ... do stuff with the passwd file ... (unlock_passwd()) || (die "Cant unlock password...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (103): File::LckPwdF Download

Added: August 13, 2010 | Visits: 1.484

Test::File::Find::Rule Test::File::Find::Rule is a Perl module to test files and directories with File::Find::Rule. SYNOPSIS use Test::File::Find::Rule; # Check that all files in $dir have sensible names my $rule = File::Find::Rule ->file ->relative ->not_name(qr/^[w]{1,8}.[a-z]{3,4}$/);...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (103): Test::File::Find::Rule Download

Added: August 24, 2010 | Visits: 1.100

File::Basename File::Basename is a Perl module to parse file paths into directory, filename and suffix. SYNOPSIS use File::Basename; ($name,$path,$suffix) = fileparse($fullname,@suffixlist); $name = fileparse($fullname,@suffixlist); $basename = basename($fullname,@suffixlist); $dirname =...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (107): File::Basename Download

Added: March 18, 2010 | Visits: 1.442

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 (90): File::Find Download

Added: June 14, 2010 | Visits: 1.233

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 (101): File::Listing Download

Added: October 24, 2010 | Visits: 1.860

Enterprise File Exchange Enterprise File Exchange (EFX) slots in where email file attachment limits stop your users from sending those important files to a contact. In the EFX world, the user visits the EFX site, uploads the file, enters the receivers email address and lets the system notify the receiver that theres a...


Platforms: *nix

License: Freeware Download (108): Enterprise File Exchange Download

Added: February 11, 2010 | Visits: 1.597

Another File Integrity Checker Another File Integrity Checker is another file integrity checker, designed to be fast and fully portable between Unix and Windows platforms. Another File Integrity Checker works by first creating a database that represents a snapshot of the most essential parts of your computer system. You can...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (95): Another File Integrity Checker Download

Added: July 20, 2010 | Visits: 1.188

File::Find::Rule::XPath File::Find::Rule::XPath is a Perl module that contains rule to match on XPath expressions. SYNOPSIS use File::Find::Rule::XPath; my @files = File::Find::Rule->file ->name(*.dkb) ->xpath( //section/title[contains(., "Crustacean")] ) ->in($root); This module extends File::Find::Rule to...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (97): File::Find::Rule::XPath Download

Added: September 10, 2010 | Visits: 1.235

File Roller 2.18.4 / File Roller project is an archive manager for the GNOME environment. Archive manager means that you can: - Create and modify archives. - View the content of an archive. - View a file contained in the archive. - Extract files from the archive. File Roller is only a front-end (a graphical...


Platforms: *nix

License: Freeware Size: 1.5 MB Download (103): File Roller 2.18.4 / Download

Added: April 27, 2010 | Visits: 909

File type determination File type determination is a little KDE Service Menu that calls the GNU file command to retrieve Mime information from files, and presents it inside a standard KDE dialog..


Platforms: *nix

License: Freeware Download (97): File type determination Download

Added: March 07, 2010 | Visits: 1.656

MultipartRequest File Upload parser MultipartRequest File Upload parser provides a HttpServletMultipartRequest class that extends the HttpServletRequestWrapper implementation to provide methods for handling multipart form data. The project supports Servlets using Java 1.2 or later. Whats New in This Release: - The API was...


Platforms: *nix

License: Freeware Size: 204.8 KB Download (133): MultipartRequest File Upload parser Download

Added: August 14, 2010 | Visits: 1.149

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: October 02, 2010 | Visits: 1.628

File::Attributes File::Attributes is a Perl module to manipulate file metadata. SYNOPSIS use File::Attributes qw(set_attribute list_attributes get_all_attributes); my $file = foo.txt; set_attribute($file, type => text/plain); set_attribute($file, encoding => utf8); my @attributes =...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (106): File::Attributes Download

Added: May 23, 2010 | Visits: 1.426

Log::Dispatch::File::Rolling Log::Dispatch::File::Rolling is a Perl object for logging to date/time/pid stamped files. SYNOPSIS use Log::Dispatch::File::Rolling; my $file = Log::Dispatch::File::Rolling->new( name => file1, min_level => info, filename => Somefile%d{yyyyMMdd}.log, mode => append ); $file->log(...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (93): Log::Dispatch::File::Rolling Download

< 1 2 3 4 5 >