File Management scripts - Top 4 Download

File Management script downloads

PHPDirList

PHPDirList is a simple, with low-configuration PHP directory indexer. Designed to be called automaticaly by Apache by adding an entry in .htaccess and to replace Apache's standard index pages. Aim is simple UI and simple code. ...

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

Simple md5 sum utility

This script is a simple md5 hash utility for generating md5 checksums of files. <hash utilThis mainly useful for systems without an included "md5sum" utility, like OS-X and Win32. It shows just how useful the batteries included philosophy of Python can be, since it leverages the md5 module ...
Python

Watching a directory tree on Unix

This script continuously monitors the paths and their subdirectories for changes. If any files or directories are modified, the callable 'func' is called with a list of the modified paths of both files and directories.'func' can return a Boolean value for rescanning; if it returns True, the directory tree will be ...
Python

DirPHP

DirPHP is a tool for: - listing all files in the same directory, color coded alphabetically, - displaying other PHP files' source code and - performing simple file uploads to the directory. No configuration is needed and the script is just a single PHP file. ...

EXPOW

EXPOW is a set of PHP scripts that generates directory indexes. It replaces Apache directory autoindexer, or generates indexes "on the fly", with visualization facilities and file managing ability. Viewing features: listing in tables, tree view, frames(optional), intensive css and icon use, image preload, Overlib support to preview thumbs of pictures. ...

GF 3XPLORER

The GF-3XPLORER is a PHP based file management-script. It allows you to manage your homepage without FTP. It includes many functions like: - Create files and folders - Delete file and folders - An editor to change textbased files Changes: - Includes more languages and more functions ...

Where file search utility

This utility searches all the paths in a semi-colon delimited environment variable list for files matching a given filespec. By default, PATH is used for the enviroment. For example, on my >computerC:where note*.exeC:WINNTsystem32otepad.exeC:WINNTNOTEPAD.EXEThis is useful for finding which executable file will be loaded by default. The optional Environment variable is handy ...
Python

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

Tree

The following program displays the directory structure of a specified path using ASCII characters. The program can optionally display files in addition to directories.This program functions similar to the windows 'tree' command. ...
Python

Genus

Genus is a simple document management system including categories, check-in, check-out, versioning, category security. Written in PHP and MySQL, files are stored in the database and use a drag-and-drop upload tool. ...

ooo cvs

This script is a wrapper for CVS that allows versioning the content of OpenOffice.org documents. It does not store the original archive in CVS, but it extracts the content into a subdirectory on check-in and commits only those files. That makes it possible for CVS to track the actual changes instead ...
Python

Clean up a directory tree

This script can be used to clean up a directory tree irrespective of whether the directory tree contains non-empty directories. As long as the user has permission to remove the files, this will work.There is no files, thor cleaning a non-empty directory tree in python os module. os.removedirs() cannot be used to ...
Python

Bobb s PHP File List

It is an easy to use PHP system, requires no databases. It can display all, or selected files and subdirectories in a specified directory. Comes in both a basic listing version, and a much more extravagant management version with users and permission schemes. ...

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

Resuming download of a file

This script shows how to resume downloading of a file that has been partially downloaded from a web server. It's been tested with Apache 1.3.x, but should work with any web server that understands the "range" header.This script uses the extra header - "Range" to let the web server know that ...
Python

Backup your files

Backup your files script makes backup versions for your files.It can be used for non-python source code also. ...
Python

Swap one file extension

This script will swap extensions on all files in the specified directory, and all of its subdirectories, and all of their subdirectories, etc. This is useful for changing the extensions of a whole batch of files in a folder structure, e.g. a web site. You can also use it for correcting ...
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

Copying and Pasting Directories and Files

This script presents a few basic fuctions that allow someone to copy a directory (along with its files and sub-directories) and paste it somewhere else. They ignore links and anything else that is not a directory or a file. The data returned from copy_dir() is in a format that paste_dir() can understand. A ...
Python