anyone who has visual basic 5 or 6 code snippet to undelete a file or folder and has been removed from recycle bin?
I think you have to do it programmatically as there is no API to do this according to my knowledge. Use of a 3rd party tool that support command line preferably can be a good option to you.
i need a short source code that will make me build one. I am tired of testing a variety of "try now and pay after" for the licensed version software. I know that the first byte of each file is converted to a '$', am I right, but to peek on the locations where the directory listing is tucked or is there a special locations on any drive, fixed or flashdrive, where the list can be found for all deleted files even if they had been trashed from the recycle bin?
If file system is FAT32, there is a master boot record (MBR) in sector 0. You can find the boot record sector of each drive from that. From boot record, you can find the FAT table, and start sector of first cluster. In FAT32, files and folders are stored in clusters. You can get a better explanation on FAT file system in this article.