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

File Removers freeware
Filter: All | Freeware | Demo
 

File Removers

< 1 2 3 4 5 
Added: June 26, 2010 | Visits: 824

File::chmod File::chmod is a Perl module that implements symbolic and ls chmod modes. SYNOPSIS use File::chmod; # chmod takes all three types # these all do the same thing chmod(0666,@files); chmod("=rw",@files); chmod("-rw-rw-rw-",@files); # or use File::chmod qw( symchmod lschmod );...



Platforms: *nix

License: Freeware Size: 8.19 KB Download (118): File::chmod Download

Added: January 27, 2010 | Visits: 3.170

TiVo File Decoder TiVo File Decoder software converts a .TiVo file (produced by the TiVoToGo functionality on recent TiVo software releases) to a normal MPEG file. This has the same functionality as using TiVos supplied DirectShow DLL on Windows with a tool such as DirectShowDump, but is portable to different...





Platforms: *nix

License: Freeware Size: 112.64 KB Download (130): TiVo File Decoder Download

Added: August 14, 2010 | Visits: 1.148

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

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 (139): File::Mirror Download

Added: June 03, 2010 | Visits: 1.949

File::LockDir File::LockDir is a Perl basic filename-level lock utility. SYNOPSIS use File::LockDir; INTERFACE new Initializes the class. Returns the singleton object. nflock($file, $nap_till, $locker, $lockhost) Locks the supplied filename. Only $file is required. $file is the file to be...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (459): File::LockDir Download

Added: October 03, 2010 | Visits: 1.527

File::Attributes::Recursive File::Attributes::Recursive module contains inherit file attributes from parent directories. SYNOPSIS Works like File::Attributes, but will recurse up the directory tree until a matching attribute is found. EXPORT None, by default. Specify the functions youd like to use as arguments to...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (112): File::Attributes::Recursive Download

Added: October 02, 2010 | Visits: 1.627

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

Released: November 09, 2012  |  Added: March 30, 2013 | Visits: 2.050

Fast File Search Free Fast File Search Utility for Windows. Works with Windows XP onwards. This freeware utility lets you to search your files superfast and quick. Is of great use when searching something urgently.


Platforms: Windows

License: Freeware Size: 4.43 MB Download (116): Fast File Search Download

Added: July 11, 2010 | Visits: 1.473

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 (106): The Featurific File Manager 0.2.0 Download

Added: August 07, 2010 | Visits: 1.125

File Selection Language File Selection Language (FSL) is a descriptive language for file selection. File Selection Language is used to selectively pick files from a directory structure. FSL is useful for selective backups, for instance. FSL uses glob patterns as the basic building block. For fine-tuning the...


Platforms: *nix

License: Freeware Size: 72.7 KB Download (92): File Selection Language Download

Added: July 11, 2010 | Visits: 893

File::Tabular File::Tabular can search and edit flat tabular files. SYNOPSIS use File::Tabular; my $f = new File::Tabular($filename); my $row = $f->fetchrow; print $row->{field1}, $row->{field2}; $row = $f->fetchrow(where => someWord); $row = $f->fetchrow(where => field1 > 4 AND field2 >=...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (95): File::Tabular 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

Added: October 22, 2010 | Visits: 1.083

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

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 (113): File-center Download

Added: March 03, 2010 | Visits: 942

Tie::File Tie::File can access the lines of a disk file via a Perl array. SYNOPSIS # This file documents Tie::File version 0.96 use Tie::File; tie @array, Tie::File, filename or die ...; $array[13] = blah; # line 13 of the file is now blah print $array[42]; # display line 42 of the file $n_recs...


Platforms: *nix

License: Freeware Size: 67.58 KB Download (91): Tie::File Download

Added: May 22, 2010 | Visits: 996

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

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: May 27, 2010 | Visits: 1.892

SGI RGB Image File Plug-In SGI plug-in provides SGI image file load & save modules for The GIMP. The plug-in supports GRAY, GRAYA, RGB, and RGBA color modes. Using the SGI Plug-In: The Parameter Settings buttons control how much compression is applied to the image: No Compression stores the image raw or verbatim. RLE...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (213): SGI RGB Image File Plug-In Download

Added: September 11, 2010 | Visits: 1.196

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: November 03, 2010 | Visits: 1.452

File::Comments::Plugin::Java File::Comments::Plugin::Java is a Perl plugin to detect comments in Java source code. SYNOPSIS use File::Comments::Plugin::Java; File::Comments::Plugin::Java is a plugin for the File::Comments framework. Both /* ... */ and // style comments are recognized. This is not a full-blown C...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (137): File::Comments::Plugin::Java Download

< 1 2 3 4 5