Current area: HOME -> Windows -> Disc & File access
Disc & File access
BOOTSEC
Reads and displays the boot sector of a drive With C Windows C source. BOOTSEC demonstrates how to use INT 25 (absolute disk read) to read the boot sector (the first sector on head 0, cylinder 0) off of a drive (either floppy drive or hard disk).
DiskCopy v1.0
Program copies diskette content (only drive A: ) to file and restores diskette with given file. Helpful in making backups of booting diskettes.
Ejecting and loading of CDs v1.0
CD poper is a simple program developed in win32 sdk (vc++6.0). The program can be used for ejecting and loading of cdrom from cddrives. Tested in NT versions not on 9x versions of windows
File scanner & watcher, for Win95/98/NT4.0.
To allow one find out which files & folders were modified, deleted or created. Alternatively, one may only log the content of some folder. With C sourcecode.
Npipe 1.2 beta 1
A utility to read and write from: named pipes, block devices, program handles (through inheritance), NT Native API objects, file mapping/section objects, sockets (UDP, TCP, IPv4, IPv6) and standard handles. Supports various test/data conversions. Supports asynchronous, blocking and queued IO. Su...
PE_MAP
This tool dumps the structure of a Windows NT executable (which is in the so-called "portable-executable-format"). It comes in handy if you want to know how good your linker is, which functions are exported or imported or if you generally like to peek around. C source
SECDEL32
This is an example of a secure file deletion under Windows NT. Files dropped on the window are opened and their size determined. Then a mapping object is created from the file and it's mapped to memory. Once mapped, it's a simple procedure to memset() the entire block and flush the view, removin...
TriDComm - ver. 1.3 source code. Written in Borland C++ Builder 4.
Has a pair of Norton-Commander-style listing windows, all of the ususal file and directory folder icons are rendered as three dimensional objects. File types are indicated by distinctive shapes, and the third dimension of the objects (z-axis) represent the file/directory size. At the base of eac...
TXT2RTF - Text to Rich Text Converter Version 1.0
TXT2RTF, Text to Rich Text Format, is a user-supported utility designed to take a plain ASCII text file and convert it into a RTF file suitable for use with Borland's Help Compiler. To run TXT2RTF, you need an IBM compatible equipped with DOS 2.XX or later. Helpdemo.txt is also included to illus...
Walking inside windows directory structure 1.0
This program shows how to get all the directory structure on Windows. It is very simple and it was written with Visual C. It demonstrates the use of 4 Windows API functions: FindFirstFile, FindNextFile, GetCurrentDirectory and SetCurrentDirectory. The output seems like tree DOS command.