Site hosted by Angelfire.com: Build your free website today!
CSI 2131
File Management
University Of Ottawa (2000)


Overview
Characteristics of computer files and mass storage media. Operations on files. File organization and access methods: sequential, indexed- sequential, direct, extendible hashing, B-trees. Design of file management systems. Includes exercises in COBOL or fourth-generation languages.

Course Projects - (English Only)
Project Solution Comments
Assignment1.zip
(59 KB)
This program will automatically figure out if a file is an ASCII file or a binary file
Assignment2.zip
(75 KB)
This progrm takes two arguments in the command line: The first is the BRP (1=FIFO, 2=LRU, 3=LFU). The second is the file in which we read the block which we will place in the buffer pool
Assignment3.zip
(57 KB)
This program encodes a series of files (3 files) given on the command line and archives them in the first indicated file on the command line. I uses LZW compression and performs a lossy compression on html files and a lossless one on text files
Assignment4.zip
(155 KB)
find_seq.c searche sequentially through a file, looking for love (among other things) and find_bs.c do a binary search through a file, looking for love (among other things).