Possible Duplicate:
Recover deleted data
I used the following C# code to delete a directory:
Directory.Delete ("C:\TC");
Can I restore the directory C:\TC using any kind of softwares? Can I also restore the sub directories?
I used the following C# code to delete a directory:
Can I restore the directory
| ||||
feedback
|
This question came from our site for professional and enthusiast programmers.
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
You could use Recuva: a piece of software from the same people who make Defraggler and CCleaner. Either that or you could create a duplicate of the directory in a temporary folder, and then only delete the temp directory after the user is 100% sure that's what they want to do. | ||||
|
feedback
|
|
I am not 100% sure but I think if you delete the files using the proper ShellOperation API call you can then find those files in the bin of Windows, with your code above I guess they are gone forever. On the other hand if you use any of those third party tools usually called Undelete, you should be able to restore most of them I guess. | |||||
feedback
|