Main > Free Download Search >

Free find files software for linux

find files

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 11547
Findwild 0.03

Findwild 0.03


Findwild is a program to search for files. more>>
Findwild is (yet another) program to search for files. It works quite differently from the other programs you may have used.
This software offers the following search criteria:
- directory path to search, with multiple wildcards placed anywhere
- file name(s) to search for, with multiple wildcards anywhere
- file name(s) to exclude, with multiple wildcards anywhere
- file content string(s) to search for, with multiple wildcards anywhere
- file content string(s) to exclude, with multiple wildcards anywhere
- file modification date within a desired range
- your choice of delimiters that define the file strings to be searched
Search criteria can be saved and recalled. It is relatively easy to modify a query incrementally, to zero-in on the results you need.
Performance Indicators:
+ Search /usr/share/* (69000 files) for all files containing the string thumb* 193 files found, 89 seconds
+ Modify the query to search only files named *.html 51 files found, 12 seconds
<<less
Download (MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
811 downloads
MP3::Find::Filesystem 0.06

MP3::Find::Filesystem 0.06


MP3::Find::Filesystem is a File::Find-based backend to MP3::Find. more>>
MP3::Find::Filesystem is a File::Find-based backend to MP3::Find.

SYNOPSIS

use MP3::Find::Filesystem;
my $finder = MP3::Find::Filesystem->new;

my @mp3s = $finder->find_mp3s(
dir => /home/peter/music,
query => {
artist => ilyaimy,
album => myxomatosis,
},
ignore_case => 1,
);

<<less
Download (0.029MB)
Added: 2006-11-09 License: Perl Artistic License Price:
1080 downloads
Finddouble 1.4

Finddouble 1.4


Finddouble searches directories for file duplicate. more>> finddouble 1.4 : is a Linux/Mac application. It searches directories for file duplicate. Very usefull to find copies of the same file : images, png, jpe, music, mp3, any kind of file.<<less
Download (22KB)
Added: 2009-04-27 License: Freeware Price: Free
428 downloads
Find Em All 1.0

Find Em All 1.0


Find Em All is inspired by XFCE-3s XFglob and Efinder which is part of the Equinox desktop environment. more>>
FindEmAll is another graphical find-and-grep tool.
Find Em All is inspired by XFCE-3s XFglob and Efinder which is part of the Equinox desktop environment.
Unfortunately XFglob is no longer included in XFCE and Efinder does not seem to work (at least for me), because it uses XFCEs glob command which is no longer available.
Main features:
- optional Perl-style regular expression syntax (grep -P)
- search for files owned by non-system user / group (find -nouser -nogroup)
- search files where the search pattern does not match
- exclude binary files from search
Files may be opened in your favorite editor by a double-click on an entry in the list of results. Right-clicking a file opens a context menu that allows to choose an arbitrary application to open this file.
<<less
Download (0.030MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1068 downloads
MP3::Find 0.06

MP3::Find 0.06


MP3::Find is a Perl module to search and sort MP3 files based on their ID3 tags. more>>
MP3::Find is a Perl module to search and sort MP3 files based on their ID3 tags.

SYNOPSIS

# select with backend you want
use MP3::Find qw(Filesystem);

print "$_n" foreach find_mp3s(
dir => /home/peter/cds,
query => {
artist => ilyaimy,
title => deep in the am,
},
ignore_case => 1,
exact_match => 1,
sort => [qw(year album tracknum)],
printf => %2n. %a - %t (%b: %y),
);

This module allows you to search for MP3 files by their ID3 tags. You can ask for the results to be sorted by one or more of those tags, and return either the list of filenames (the deault), a printf-style formatted string for each file using its ID3 tags, or the actual Perl data structure representing the results.

There are currently two backends to this module: MP3::Find::Filesystem and MP3::Find::DB. You choose which one you want by passing its name as the argument to you use statement; MP3::Find will look for a MP3::Find::$BACKEND module. If no backend name is given, it will default to using MP3::Find::Filesystem.
Note: Im still working out some kinks in the DB backend, so it is currently not as stable as the Filesystem backend.

Note the second: This whole project is still in the alpha stage, so I can make no guarentees that there wont be significant interface changes in the next few versions or so. Also, comments about what about the API rocks (or sucks!) are appreciated.

<<less
Download (0.029MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1081 downloads
Bundle::POPFile 1.01

Bundle::POPFile 1.01


Bundle::POPFile package contains the modules needed by POPFile in one clean bundle. more>>
Bundle::POPFile package contains the modules needed by POPFile in one clean bundle.

SYNOPSIS

perl -MCPAN -e install Bundle::POPFile

CONTENTS

BerkeleyDB
DBI
Date::Format
Date::Parse
Digest::MD5
Encode
Encode::Guess
File::Copy
File::Find
File::Path
Getopt::Long
HTML::Tagset
HTML::Template
IO::Handle
IO::Select
IO::Socket
IO::Socket::SSL
IO::Socket::Socks
MIME::Base64
MIME::QuotedPrint
Sys::Hostname
Text::Kakasi
XMLRPC::Transport::HTTP

<<less
Download (0.002MB)
Added: 2007-05-26 License: Perl Artistic License Price:
882 downloads
File::Find 5.8.8

File::Find 5.8.8


File::Find is a Perl module to traverse a directory tree. more>>
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 }, .);

These are functions for searching through directory trees doing work on each file found similar to the Unix find command. File::Find exports two functions, find and finddepth. They work similarly but have subtle differences.

find

find(&wanted, @directories);
find(%options, @directories);

find() does a depth-first search over the given @directories in the order they are given. For each file or directory found, it calls the &wanted subroutine. (See below for details on how to use the &wanted function). Additionally, for each directory found, it will chdir() into that directory and continue the search, invoking the &wanted function on each file or subdirectory in the directory.

finddepth

finddepth(&wanted, @directories);
finddepth(%options, @directories);

finddepth() works just like find() except that is invokes the &wanted function for a directory after invoking it for the directorys contents. It does a postorder traversal instead of a preorder traversal, working from the bottom of the directory tree up where find() works from the top of the tree down.

<<less
Download (12.2MB)
Added: 2007-04-26 License: Perl Artistic License Price:
913 downloads
FileLister 0.5.1

FileLister 0.5.1


FileLister is a web-based frontend for searching an indexed filesystem. more>>
FileLister is an file system indexing tool with a web based front-end. Running platform independently in a web environment, its goal is to easily find files in large archives, using a rich set of search configuration options.
Additionally, you may download single files or even create and download zip files on the fly from the results of your search.
Main features:
- Simple / Advanced Search modes
- Substring, case-sensitive/-insensitive, exact, regular expressions search
- Search within the whole index tree or within parts of it only
- Search by size, modification date, file/folder/all; sort order definition
- Choice between searching the index or directly on disk
- Search again / Search within results modes
- Column resorting, results navigation, definition of results-per-site count
- Dynamic results caching
- Creation of links for both files and directories for direct download from results view
- Generation and download of zip files created out of the results
- Indexing tool which is configurable as cron job / scheduled task
- Graphical configuration tool for the definition of the application settings, including out-of-the-tool JDBC testing part
- Dynamic reload of modified application settings
- Possibility to define a virtual root directory to be indexed: Ideal tool for searching e.g. a software archive
- Open Source (GPL licensed)
Technologies used:
- J2SDK / Swing
- Java Servlets API / JSP
- MySQL RDBMS / JDBC
- Xerces XML
- JavaScript / CSS
<<less
Download (1.8MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1638 downloads
Bundle::Posy 0.73

Bundle::Posy 0.73


Bundle::Posy is a bundle to install Posy and major plugins. more>>
Bundle::Posy is a bundle to install Posy and major plugins.

SYNOPSIS

perl -MCPAN -e install Bundle::Posy

CONTENTS

Posy - a website generator inspired by blosxom
Posy::Plugin::TextTemplate - Posy plugin for interpolating with Text::Template
Posy::Plugin::YamlConfig - Posy plugin to read config files in YAML format.
Posy::Plugin::FileStats - Posy plugin to cache file statistics.
Posy::Plugin::AntiSpambot - Posy plugin to obfustcate mail links.
Posy::Plugin::BinFile - Posy plugin to serve (binary) non-entry files.
Posy::Plugin::Canonical - Posy plugin to force redirect to canonical URL.
Posy::Plugin::Categories - Posy plugin to give category links.
Posy::Plugin::CgiCarp - Posy plugin to aid debugging by using CGI::Carp.
Posy::Plugin::CgiFile - Posy plugin to enable drop-in use of CGI scripts inside Posy.
Posy::Plugin::Dump - Posy plugin to aid debugging by dumping object contents
Posy::Plugin::DynamicCss - Posy plugin to load different CSS styles based on the UserAgent.
Posy::Plugin::EntryTitles - Posy plugin to cache entry titles.
Posy::Plugin::FindGrep - Posy plugin to find files using grep.
Posy::Plugin::FlavourMenu - Posy plugin to make a menu of flavours
Posy::Plugin::Info - Posy plugin which give supplementary entry information.
Posy::Plugin::LinkList - Posy plugin to give a dynamic list of links
Posy::Plugin::LinkExtra - Posy plugin to add extras to local links
Posy::Plugin::LocalDepth - Posy plugin to filter by local depth
Posy::Plugin::MultiEntry - Posy plugin to enable multiple entries to display for special entry files.
Posy::Plugin::MultiHeader - Posy plugin to enable multiple header templates.
Posy::Plugin::NearLinks - Posy plugin to give links of articles in the current category
Posy::Plugin::NotFound - Posy plugin to provide a custom Not Found page.
Posy::Plugin::Paginate - Posy plugin to paginate multiple entries.
Posy::Plugin::Pod - Posy plugin to convert POD files to HTML
Posy::Plugin::RandQuote - Posy plugin to give a random quote from a file
Posy::Plugin::ShortBody - Posy plugin to give the start of an entry body
Posy::Plugin::TextToHTML - Posy plugin to convert plain text files to HTML
Posy::Plugin::ThemeCss - Posy plugin for Cascading Style Sheet themes
Posy::Plugin::ThisFlavour - Posy plugin to change local links to the current flavour
Posy::Plugin::Toc - Posy plugin create a table of contents

This bundle includes all the modules used by the Posy website content management system, and all the major plugins for the Posy system. It does NOT include the modules upon which they depend.

A Bundle is a module that simply defines a collection of other modules. It is used by the CPAN module to automate the fetching, building and installing of modules from the CPAN ftp archive sites.

Posy is a website content management system inspired by the design of blosxom. The filesystem is the database, there are flavour templates, and plugins. However, this system doesnt require one to write ones entry files in a particular format; one can choose from pure HTML, plain text, or blosxom format. And other formats can be dealt with by plugins.

<<less
Download (0.003MB)
Added: 2006-10-07 License: Perl Artistic License Price:
1113 downloads
My File Manager 0.4

My File Manager 0.4


My File Manager is a small and lightweight file manager. more>>
My File Manager is a small and lightweight file manager. It was developed to provide a small and fast file manager, which has only a few dependencies from other packages, but including some interestings things like mount partitions, minimalistic burning capability and mass renaming files. MFM use FLTK graphics toolkit.
Main features:
- Selectable shown fields (permissions, users, groups, date and size)
- Various sort options
- Rename group of files
- Change attributes of group of files
- Compress files
- Burn CD/DVD
- Find files by name or by content
- Mount/umount partitions
<<less
Download (0.092MB)
Added: 2006-06-11 License: GPL (GNU General Public License) Price:
1237 downloads
File::PathList 0.02

File::PathList 0.02


File::PathList is a Perl module that can find a file within a set of paths (like @INC or Java classpaths). more>>
File::PathList is a Perl module that can find a file within a set of paths (like @INC or Java classpaths).

SYNOPSIS

# Create a basic pathset
my $inc = File::PathList->new( @INC );

# Again, but with more explicit params
my $inc2 = File::PathList->new(
paths => @INC,
cache => 1,
);

# Get the full (localised) path for a unix-style relative path
my $file = "foo/bar/baz.txt";
my $path = $inc->find_file( $file );

if ( $path ) {
print "Found $file at $pathn";
} else {
print "Failed to find $filen";
}

Many systems that map generic relative paths to absolute paths do so with a set of base paths.

For example, perl itself when loading classes first turn a Class::Name into a path like Class/Name.pm, and thens looks through each element of @INC to find the actual file.

To aid in portability, all relative paths are provided as unix-style relative paths, and converted to the localised version in the process of looking up the path.

<<less
Download (0.026MB)
Added: 2007-06-06 License: Perl Artistic License Price:
870 downloads
Minimalist Admin 0.4

Minimalist Admin 0.4


Minimalist Admin is a very simple Web interface for the Minimalist mailing lists manager. more>>
Minimalist Admin is a very simple Web interface for the Minimalist mailing lists manager.

Installation:

1. Unarchive Minimalist Manager

Make sure that you are in your WWW directory and then unarchive the Minimalist Manager archive (whatever the filename is):

$ tar -zxvf minimalist-manager-0.3.tgz

2. Configure

Check the config.inc file. There you can specify settings that are relevant to your setup.

3. Create list configuration

The list information is taken from the lists.lst file from Minimalist.

In the directory /lists you find 2 files. One .css file in which you can modify the appearance of the subscribe/unsubscribe window. And one config file, in which relevant information which describes the mailinlist.

You have to create at least the config file per list. If there is no css file it will use the toplevel stylesheet located in the root of Minimalist Manager.

4. Done

This is all that is needed. Fire up your browser and go to the site that you specified to host Minimalist Manager.

<<less
Download (0.010MB)
Added: 2005-10-22 License: GPL (GNU General Public License) Price:
1463 downloads
MP3::Find::Base 0.06

MP3::Find::Base 0.06


MP3::Find::Base is a base class for MP3::Find backends. more>>
MP3::Find::Base is a base class for MP3::Find backends.

SYNOPSIS

package MyFinder;
use base MP3::Find::Base;

sub search {
my $self = shift;
my ($query, $dirs, $sort, $options) = @_;

# do something to find and sort the mp3s...
my @results = do_something(...);

return @results;
}

package main;
my $finder = MyFinder->new;

# see MP3::Find for details about %options
print "$_n" foreach $finder->find_mp3s(%options);

This is the base class for the classes that actually do the searching and sorting for MP3::Find.

<<less
Download (0.029MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1080 downloads
Remote File Index 1.2

Remote File Index 1.2


Remote File Index is an add-on for Plone which keeps track of a document only by its url. more>>
Remote File Index is an add-on for Plone which keeps track of a document only by its url.
Did you ever find a huge pdf file that youd like to keep track of but wouldnt like to copy it entirely on your server ?
Now RemoteFileIndex indexes the content in the portal Catalog and only keeps the url of that document.
Works with:
- Plone 2.5.2
- Plone 2.5.1
- Plone 2.5
Enhancements:
- better integration with ATContentType
<<less
Download (0.008MB)
Added: 2007-03-10 License: GPL (GNU General Public License) Price:
958 downloads
File::Attributes 0.04

File::Attributes 0.04


File::Attributes is a Perl module to manipulate file metadata. more>>
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 = list_attributes($file);
# @attributes = qw(type encoding)

%attributes = get_attributes($file);
# $attributes{type} will be text/plain
# $attributes{foo} will be undefined.

File::Attributes is a wrapper around modules in the File::Attributes hierarchy. If you use this module directly (instead of one of the aforementioned decendants), then your attribute manipulations will Just Work, regardless of the underlying filesystem.

Module::Pluggable is used to find all File::Attributes:: modules that inherit from File::Attributes::Base and that are applicable on your system. If it finds one, it uses that. If not, it uses File::Attributes::Simple, which is bundled with this module and works everywhere.

As of version 0.04, plugins are now set up per-file, not per-system. This means that if you have File::Attributes::Extended installed, extended attributes will be used where available, but Simple attributes will be used on files where extended attributes dont work (a FAT filesytem on a Linux machine, for example). Existing simple attributes will be read even if extended attributes are available, but writes will affect only the extended attributes.

This means that you can switch to a better attribute plugin at any time, without losing any old data!

<<less
Download (0.030MB)
Added: 2007-04-25 License: Perl Artistic License Price:
912 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5