File Management scripts - Top 4 Download

File Management script downloads

php files

php files is a simple, yet extremly handy directory browsing script, that allows users to view a representation of what is in certain directories, as well as a virtual ftp browsing >script.pphp files is a n;php files is a neat way to display files and folders. ...

Dory Navigator

Dory Navigator is a folder and files navigator written in php. It is aimed to be fast, standard compliant, and able to load broad tree structures, and overall to be easy to use. ...

PHP ExcelReader

PHP-ExcelReader is a PHP Library for read Excel files. ...

Libra File Manager

Libra File Manager is a PHP Filemanager. It includes User CP, Admin CP, and many basic file creation / modifying tools. It alows user defined themes as well. File Functions include: List, Open, View, Edit, Create, Upload, Rename and Move. User Functions include: Change password, and Change color scheme. Admin Functions include: ...

PHP FTP File Manager

PHP & FTP File Manager is a Visual File Manager developed in PHP, JAVASCRIPT and AJAX. It accesses files using FTP, with no need to use PHP or other Server Side Scripting Language, it just needs the FTP user and password. It provides to the user a visual and intuitive interface. ...

csASPZipFile

This is an ASP component which enables a script to create zip archive files. It also has some functionality for reading and extracting files from zip archives. This component gives a script the ability to build a zip file from files on the server. The resulting archive can be saved on ...
ASP.NET

FSlint

FSlint is a utility to find and clean various forms of lint on a filesystem. One form of lint it finds for example is duplicate files. It has both GUI and command line modes. ...
Python

Gerstensaft

Gerstensaft is an easy to use graphical oriented frontend for SAFT. It features sending files and directories and provides a history of used addresses.Since it is only a frontend, you'll need the sendfile program installed as well. ...

combine

combine is free software, which allows a user to make matches between files, and as a result to make file joins, aggregations, and frequency counts.combine is known to have compiled successfully on GNU/Linux, Mac OS X, and HP-UX systems. ...

Micro File Creator

Micro File Creator writes plain text into a file on your webserver. Just define a filename what you want and insert file content into the form and the script will store it. ...

Alerttail

Alerttail executes actions when "some text" has been written to a file.This software tails a file and when a line matches some text pattern alerttail will execute a list of actions defined on it's own configuration file.Imagine you want to be warned when some text is written to a log file, ...

Directory Iterator

This script is an iterator that can be used to walk through directories.This class is intended to provide an iterator version of the os.listdir function. The interesting property of the iterator is that you can control if you want a deep iteration of directories with the 'deep' member.After having returned the path of ...
Python

Extracting tar gz files in Windows

This script is meant to be used as a commmand line *.tar.gz file extractor. If it fails, then a usage note is given. It may be small, but it can be very useful for some people. Theuseful fofor which this program was written is that Windows does not come with a *.tar.gz ...
Python

File Extractor

This program is meant to be used to extract *.BMP and *.JPG files from one file that has one or more of these image files stored inside of it. Corruption of the image file is verified manually after the file has been extracted.This program was designed for use with a deleted-file ...
Python

Cache file contents to speed access

This class caches the contents of a set of files and avoids reading files repeatedly from disk by holding onto the contents of each file as a list of strings.Some tasks require reading from a set of files in a random manner. Opening and reading files is a time consuming operation ...
Python

RoadRunner

This recipe allows you to update desired files in a directory tree. It needs to be run from the shell. Once you run it, it will ask you for: a) the "string" you want to insert in the file b) the extension of the files to update e.g: .html c) a ...
Python

Safely morph a file in place

This script contains a class that enables a client to securely update an existing file, including the ability to make an automated backup version.This code encapsulates the method to safely update files in-place, by first writing to a temporary file and finally renaming the new temporary file to the old filename. This ...
Python

Versioning file names

This script has the following action: if the specified file exists, it is versioned by appending to the extension a three-digit number, starting with "000".It's pomp;quot;0ake backups of files before you mangle them. A standard way of doing so is to appending to the extension an incremented number. The optional second ...
Python

Flexible directory walking

This function walks a directory tree starting at a specified root folder, and returns a list of all of the files (and optionally folders) that match our pattern(s).The standard match our tree function os.path.walk can be confusing, and is difficult to customize. It can also be slow. Here's an alternative that ...
Python

Extracting Windows file versions

This is my attempt at extracting the file version information from .dll, .exe, .ocx files etc. on Windows 2000 (should work with others, but I haven't tested it), without resorting to using extensions (i.e. dll functions). Put the code in a file in your PYTHONPATH (such as 'verchecker.py') and say 'from verchecker ...
Python