File Management scripts - Top 4 Download

File Management script downloads

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

Decorator

This script defines a "decorator" that, rather than decorating the function, calls it, passing it a file object that it had opened as the first argument.Of course, it makes sure to close the file upon the function's return (or nonreturn) with a try...finally block. One can use this decorator to get ...
Python

Simple Directory Listing

Simple Directory Listing is a single file php script which functions as directory listing in an apache http server.It provides many useful functions: - Copy/Move, rename, delete directories - Download files(pass through the php script) - Read/Edit files - Create a file/folder - Upload files - ...

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

php Download Manager

php Download Manager is a script package written in php with a MySQL back-end. The script allows site owners to offer downloads by category. The program generates code to link to categories or individual downloads. When a visitor downloads, the file location is masked. MySQL generates the actual download. Features of ...

KLibido

KLibido is a KDE usenet news grabber for Linux.Features: - Automatic joining of multi-part posts - Automatic decoding of posts, using the uudeview library (yEnc supported) or an internal decoder - Multiple servers support, with priorities and fallback if an article fails on a server and is present ...

php File System

php File System allows to share a file structure over the web, even in a restricted php environment -like most free providers have. All files and folders structure are stored in the database, and are accessible according to a per user entitlement mechanism. Each file can be downloaded, checked-out, checked back ...

File Explorer on the Web

FeW (File Explorer on the Web) is a php script that allow users to manage their files via the web. Users can create, delete, rename, zip, upload and download files and directories. Being serverside, makes it easily viewable by light/old browsers. ...

MyCDCatalog

MyCDCatalog reads a CDROM volume (ISO9660) takes their information, traverses the file system tree and stores information about each file and directory found. CDROM, file and directory information are stored in a MySQL database for future use. MyCDCatalog starts showing an option's window, in order to mount the CDROM, read it ...

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

A simple non recursive directory walker

This script is an equivalent of os.path.walk(), but without callback function. A simple directory walker, without the burden of creating a callback for os.path.walk().This is also usefull for incremental directory walking (where you want to scan remaining directories in subsequent calls). ...
Python

Python replacement for java util Properties

This script provides a quick and easy way to process Java properties files using pure Python. Of course, Jython can always be used, but in situations where Jython cannot be used, this recipe provides a sure-fire drop-in replacement.The Properties class is modelled to duplicate the behaviour of the original as closely ...
Python

Filetail

This script is a module that allows for reading lines from a continuously-growing file (such as a system log).It handles log files that get rotated/trucated out from under us.This is useful for writing all sorts of log-monitoring scripts. As given, it only provides a line-by-line interface (perfectly reasonable if all you're doing ...
Python

AerFM

AerFM is a php/AJAX based file manager.This aplication is dedicated to manage the filesystem of a webserver via web interface. It is a PHP/AJAX based application and works only with Firefox 1.5. ...

C like iostream syntax in Python

This script represents a very simple proof-of-concept of an ostreams-like interface wrapping around file-like objects, included a demonstration of manipulators.Although theation of treams model does not make it necessary, it is quite easy to make a wrapper around file-like objects that behaves like the C ostreams'  insertion operator (e.g., cout Although ...
Python

XDCC Fetcher

XDCC Fetcher is a PHP script that allows you to download files from XDCC. You need to simply go to a search site and do a search - this will give you an IRC server address, a channel name, a user nickname and a pack number. Copy & paste these details ...

Counting pages of PDF documents on Mac OS X

Given that PDF is a "native" data format on Mac OS X, it is very easy to get access to some properties of such documents. One is the number of pages. Using Python the necessary code to do this is only about four lines, plus some import and command-line plumbing, etc.This ...
Python

nget

nget is a command line nntp file grabber. It automatically pieces together multipart postings for easy retrieval, even substituting parts from multiple servers and newsgroups.It  handles disconnects gracefully, resuming after the last part succesfully downloaded.nget is written in C , and should run on any POSIX OS with a decent c compiler, ...

Private Peer2Peer

Private Peer2Peer (2P2P) is a PHP project that stores specified media of a community and allows those members to share files. Client must be installed on all members. What does 2P2P do? - Private File Sharing with only community members. - Securised connexion between all members of community. - ...

Iterating through large file like objects

This function provides a simple iterator for the lines of a file-like object. (It also provides a flag for removing/retaining trailing newlines.) I ran into the problem a number of times that I wanted to read-in a very large file-like object (say a GB or two) line by line. This is ...
Python