Posts

Showing posts with the label DELETE

How to Permanently Delete Files from PC,Tablet and Android Phone – Undeletable Files

Image
Many times we simply delete unwanted files from our computer by simply right-clicking and selecting the delete option. By doing this, the file of course will be deleted but shifts to the recycle bin immediately. Even if you clear the recycle bin, the unknown fact is that the files which you deleted are still present in the form of dead files on your hard drive.There are still   many ways to recover   these dead files or folders from your computer or device. This is why it is very important to permanently delete sensitive data from your hard drives. This task can be done by a free app called   Eraser.  This app allows you to erase all the dead files from your system. Once you download this app, follow the installation in your system. After successful installation, Run the app from your desktop. all you need to do is to select files or folders that you wish to permanently delete, and then let  Eraser  do the rest.       Also Check:...

Delete folder via CMD

Some times Because of virus Folder Can't Delete So you need CMD's Help::  By Parth Makadiya Two ways to go here: RMDIR /S /Q drive:folder_name Can be used to remove a folder (directory) containing files and folders. Sometimes it will not remove an empty folder RD /S /Q J:\New Folder Removes empty folders only You'll notice I've added the following items: /S Add this to remove all directories and files in the specified folder in addition to the directory itself. This is called removing a directory tree. /Q Quiet mode, does not ask if its ok to remove a directory tree with /S. A third method, sometimes permissible, is the DELTREE command. Thankyou