I am wondering how to go about writing a program to permanently remove files from my hard drive. I know that my program needs to at least have the same functionality as "rm" in terms of removing the system's links to the data, but I also am interested in how I go about nullifying (entirely) the data on the disk.
I am pretty sure that C and assembly will provide this low level functionality, but I'm not really sure how to even start trying to access parts of the disk, or track down the locations of different fragments of a file on the disk.
I know this might seem like kind of a big project due to my lack of knowledge on filesystems, but I'm just trying to learn. I'm aware that I'll need to learn more about hard drives and what type of drive I'm specifically trying to work with. But any help/links you could provide would be appreciated.
Thanks.