Help with recovering deleted data from an Android phone. Step-by-step guide to recover deleted files on Android Recuva won't start

Recuva is a free file recovery utility from developers from the British company Piriform. A fully functional version of the program can be downloaded for free, but there is also a paid edition of Recuva, which adds the function automatic update and support for recovery from virtual disk.

Advantages of Recuva

You can download the program on the official website of the developer. The Recuva installation file weighs a little more than 4 MB, the installed utility occupies 6 MB on your hard drive. Among other advantages:

  • Completely free work.
  • Russified interface.
  • Availability of a recovery wizard that allows you to flexibly customize the search procedure deleted files.
  • Ability to add the “Search for deleted files” option to Explorer and Recycle Bin.

The Search for Deleted Files option in Explorer allows you to quickly run a scan of a specific folder from which data has been erased.

For example, a photo was stored in the Pictures folder. If you accidentally erased a photo, right-click the Pictures directory and search for deleted files. The scan will only be performed on that specific folder.

Purpose of the program

Recuva is a universal recovery program that can find and return files of any format. In one of the recovery wizard windows, you can specify what type of files to search for.

This filter allows you to speed up the process of searching for erased data. If, for example, a document created in Word, Excel or one of the LibreOffice applications is deleted, then you just need to check the appropriate option so that the program does not search for other formats.

Recuva can find data that was on a formatted drive.

Some files will be damaged, but 90 percent are usually restored without problems - not bad for a utility that can be downloaded for free. However, if the file system of a flash drive or disk fails, it is problematic to return information using this program.

Recovery procedure

Recuva has a user-friendly interface, but a little instruction manual won't hurt: it's useful to know how to use the program to achieve maximum effect.


Once the scan is complete, you will see a list of found data. There is a colored circle next to each file.

The color indicates the degree of damage:

  • Green – no damage, ready for restoration.
  • Yellow – there are problems, the file may not open.
  • Red – data is damaged and cannot be restored.

To get files back, select them and click Recover. When restoring data, select a folder that is located on another drive.

You cannot save found files to the disk from which they were deleted!

If you are not satisfied with the recovery wizard, you can switch to Recuva's advanced mode. To do this, when starting the program, close the wizard window by clicking “Cancel”. In Advanced mode, you can specify which media to scan. Pay attention to the "Settings" button.

Very often data is deleted not from the SD card, but from the internal one Android memory. In this situation, not a single file recovery program for Android helps. That is, users not only lose valuable data, but are also limited in recovery methods.

This method of data recovery from internal memory An Android phone cannot be called very simple. But it works and has been successfully tested by me. The described recovery method was proposed by the user Wartickler on the forum.xda-developers.com and supplemented by a very useful article on Habrahabr (most of the relevant information is given from there. Thanks to the author for the presentation).

Who will benefit from this guide on how to recover data from your phone? File deletion scripts

It turns out that it is possible to deep scan Android internal memory. Everything you need to recover data from your phone:

  1. download free utilities recovery
  2. carefully read the data recovery instructions
  3. repeat the steps described in it on Android.

Difficulty in restoring from the phone's internal memory

Android internal memory is not connected as a disk, as is the case with an external SD card, which you can always connect to your computer. External memory allows you to use data recovery tools that scan deleted files and help return them to a working state.

Typically, the operating system simply removes the reference pointer in the index, which indicates that the file exists with such and such a name and is located at that location on the hard drive/memory. There are effective tools for data deletion; they overwrite the deleted file in several cycles, preventing recovery in this way.

The catch is that data recovery programs need the actual disk to deeply scan photos that were accidentally deleted. New phone models often do not support external SD cards, which are very easy to mount as disks using a card reader. This complicates Android recovery slightly: the internal memory is mounted as MTP/PTP, which is not considered a mounted drive and is therefore not recognized by data recovery applications. However, we can solve this problem.

Stages of restoring internal memory

I have a phone Samsung Galaxy Nexus Toro. I believe the recovery method is suitable for any android phone with internal memory. We will also need Windows 7 or higher to:

  • Back up a partition of your phone's internal memory to your computer as a single massive file in RAW format,
  • Convert RAW file to virtual HDD,
  • Mount the virtual hard disk as a disk in Disk Manager,
  • Scan the mounted virtual hard disk,
  • Find deleted files, recover data from an Android phone using the Recuva recovery program

Checklist of necessary tools for data recovery

  • Android phone with root access
  • Installed BusyBox (a set of Linux console utilities)
  • Installed linux environment for Windows - Cygwin on pv and util-linux from the repository. You need to open the Cygwin application at least once to ensure that the /bin folder is created. In addition, I made a folder in to place the exported file in .raw format,
  • Netcat Unix utility (download the zip file and extract nc.exe into ),
  • ADB drivers (make sure adb.exe is in the Windows environment path),
  • USB debugging must be enabled on the device.
  • VHD tool from the mighty Microsoft. Place the VhdTool.exe file in .
  • Piriform Recuva or your favorite data recovery tool (Recuva finds only the most well-known file types: images, videos, etc. To recover more exotic file types on Android, use more specialized programs)

Install BusyBox on your phone and provide root access

We will need a copy of the phone's internal memory partition; making it is not so easy. You will need a set of BusyBox unix utilities and root access to perform operations with these applications.

You can download BusyBox and KingoRoot from our website or directly to 4pda (registration is required to download files). We install the utilities in the following sequence: KingoRoot, then BusyBox.

The KingoRoot root manager is easy to install: turn on the Internet on your phone and run the installer. It "roots" the phone - that is, it enables full access to the Android system. Next we install BusyBox. We leave the default path as the installation directory.

Install KingoRoot on your phone

Recover from Android internal memory. We connect the phone to the PC in ADB mode

Connect the turned on phone to the computer in ADB mode. The easiest way to do this is to download adb drivers for your phone model and install them on your computer. It is advisable to restart your PC after this.

On the phone, enable debugging mode (Options - Developer Options - check the "USB Debugging" box). If there is no such section, go to the About the device section and click on the “Build number” line 7 times.

We connect the phone to the computer via a USB cable. If a request for debugging mode appears on the phone, we agree.

Making a raw copy of a partition from your phone

The recovery method from the phone's internal memory is based on complaints from people who have problems following the guide. I recommend recovering a full block of memory instead of a data partition. I call it mmcblk0. Check if your disk name is different from mine. Determine which block or section you want to return. I needed to restore the partition with user data: /dev/block/mmcblk0p12.

Open your Cygwin console (assuming BusyBox is installed at ) although it may be . Run the following commands in the console:

Adb forward tcp:5555 tcp:5555 adb shell /system/bin/busybox nc -l -p 5555 -e /system/bin/busybox dd if=/dev/block/mmcblk0p12

Open another Cygwin terminal and type:

Adb forward tcp:5555 tcp:5555 cd /nexus nc 127.0.0.1 5555 | pv -i 0.5 > mmcblk0p12.raw

Brew a mug of coffee. Copying internal memory of 32 GB takes about 3 hours.

Converting the internal memory image into readable RAW

We need to convert the raw file to a virtual partition hard drive. The VhdTool.exe utility simply places the VHD footer at the end of the raw file. Open a command prompt Windows string, go to and run the command:

VhdTool.exe /convert mmcblk0p12.raw

Mounting an internal memory image in Windows

Now you need to mount the VHD image in Windows OS. Go to Computer Management (Start - Computer - Management). Go to Disk Management.

Menu Action - Attach virtual hard disk.

Please indicate as source

Right-click the name to the left of the unallocated space and select Initialize Disk. Select GPT.

Right button on Unallocated File Space - Create Simple Volume.

A window will appear asking you to format the disk. DO NOT agree to format the drive at this point. Restoring files after formatting is not always possible!

Right-click on the RAW space and select Format... Specify the file system type as FAT32. Set the allocation block size to "Default". Make sure the Quick Format option is checked. You don't want to overwrite the entire new disk with zeros (0) and destroy the data. A quick format means that Windows will try to destroy the index for the disk by creating a new index. Without this option the operating room Windows system will wipe the disk with zeros (0), destroying your data. Click OK.

A window will appear informing you that formatting this partition will delete all data on it. This would be doubly true if you didn't actually check the Quick Format option. Double check that you actually checked the box and click OK.

Recovering files from an Android internal memory image using Recuva

Open the Piriform Recuva application. In the recovery wizard, click Next. Select "Other" and "Next". Click the "In a specific location" button and enter: K:\ (assuming K is the drive letter of the mounted drive...). Click "Next". Select the Deep Scan option. This is the magic option that finds files that have been deleted... but aren't actually deleted. Click the "Run" button to scan the disk.

The application can scan deleted files for about an hour in Deep Scan mode. Brew two more mugs of coffee!

After Rekuva displays the scan results, you can select files to recover using the checkboxes. Click the "Recover..." button and specify the location where you want to save the data from your phone.

Recovering data from your phone using Recuva

Question answer

I have a GALAXY 3 NOTE phone. Accidentally erased the recordings voice recordings on Call recorder. I heard that there is free program recovery. Help if you know how to find it.

Answer. If the audio files were stored on an SD card, almost any file recovery application on Android and PC will do. Among the popular ones is Tenorshare Data Recovery, among the universal ones we recommend downloading Recuva. If the files were stored in the internal memory of the phone, then things are more complicated. Try a program for Android called Undeleter Pro or follow these instructions to recover from internal memory.

Should I download the program to my computer or to my smartphone itself? I started downloading the program to my smartphone and it says “not enough space,” although there is enough internal memory. Will Renee Undeleter help you recover photos from your phone's internal memory? There was no memory card.

Answer. First, do not copy files to where you are going to restore from. Android data. Secondly, Renee Undeleter will not recover files in your situation. Try Recuva or choose another photo recovery program if unsuccessful.

I moved my important photos to the running game folder "Android/data/com.supercell.clashofclans". Then when I went to the folder on my phone, the photos disappeared. Will I be able to restore my photos to internal memory? SAMSUNG phone GALAXY J2 OC ANDROID 5.1.1?

Answer. Yes, if you follow all the steps as described in the instructions. The main thing is to determine which disk the photos were on and make a raw copy of this particular partition. Recuva should recover photos from internal memory if the recovery status is yellow or green.

Tell me how to understand whether the block recovery process is in progress? Everything seemed to be going fine, but after typing all the commands in the terminal, a couple of lines with zeros appeared in the second window, a *.raw file was created in the nexus folder with a size of 0 bytes, and that was the end of it. However, after some time, on drive E: (in my case, Cygwin was installed from there), a file with a name of something like vhd with a size of 499 MB was discovered (it restored a 12 GB block), but the most interesting thing was that a virtual disk was created with the only one empty file recovery.txt! Something went wrong?

Answer. Everything is correct, the vhd is mounted, and after a quick format there should be no files on it at all. Now you need to launch Rekuva and specify this disk to search for files on it. If the snapshot of Android's internal memory was taken correctly, the files should appear in the list of found files during a deep scan.

If the raw file is not suitable for recovery, try another way to create a snapshot of the internal memory - by creating an FTP server when the phone is used as a USB modem. The process is described in the above-mentioned article on Habrahabr (link at the top of this article).

I have samsung tablet GT-P7510. Android 4.0.4. I did everything as in your post. I have a Samsung folder. A vhdtool file appeared in it - 184KB and a raw file, but it was 0KB. I can’t try the second method with FTP, because... There is no USB-Modem option.

Answer. Try downloading netcat 64-bit version. When entering commands in the console, use nc64 instead of nc.

If it doesn’t help, here are some more instructions for restoring from internal memory.

Files disappear from the flash drive and internal memory of Android. I don’t clean my phone of debris because I’m not sure that the information is in the folder correctly! Tell me the reason and programs for recovering lost files from the internal memory of Android! The information on your site is purely for the computer!

Answer. There are no high-quality programs for recovering from the phone’s internal memory. Gaining access to the system is not so easy. This article provides a working method for recovering files from Android internal memory.

The problem is this: the tablet froze, we restored some photos in service center, but the huts were reflashed and seemed to have formatted the internal memory. I tried to restore it with programs, but the tablet connects as an MTP, and not as a flash drive, and it is impossible to scan. Is it possible to recover data from internal memory on Android by copying an image of the memory and its partitions?

Answer. Yes, the process is described in detail above. Using an ftp server, you can make an exact image of a memory card in the form of a raw file and mount it on your computer, then use any program (in this case Recuva) to restore photos from the image of the phone’s internal memory.

Updates have arrived for xiaomi redmi 3 special. Updated, installed - everything works. But the videos and photos saved on the phone’s internal memory disappeared. The most interesting thing is that the total phone memory shows 25 Gb, but it should be 32. Perhaps the lost files are there. I searched all the folders, but found nothing. How to recover deleted files in the internal memory of the phone, where to look for them?

Answer. Photos and videos are stored in the DCIM/Camera folder. If you did not use an external SD card to save, it means that the multimedia files were located in the internal memory, therefore, that’s where you need to look for them.

The photo folder may have been overwritten during the mobile device update process. By the way, part of the phone's memory is occupied system files, so this does not indicate that the files you need are stored hidden.

Try searching for files with DiskDigger for Android; if that doesn’t help, make an image of the phone’s internal memory, then scan the connected disk with Reucva on your computer.

I decided to delete the unsuccessful photo, but accidentally deleted some of the other necessary photos. The photos were on the memory of the phone itself. When connecting to a computer, the phone does not show up as separate disk. Therefore, as I understand it, I won’t be able to restore the files with a simple program, since they were on the phone itself, in the internal memory. What program can I use to restore them? For me, some simple option is better, because I hardly understand this. If possible, with a description of actions and steps.

Answer. Simple methods There is no way to restore your phone's internal memory. As a rule, resuscitation programs for Android work only with external memory or require root to access the phone’s memory, while searching far and wide in all areas of the internal memory. Accordingly, the only possible way– make an image of the phone’s memory, at the next stage you can use any program. It is important that you do not operate the phone until this point, otherwise the files may be overwritten.

I am tormented by the question: is it possible to recover photos from the phone’s memory itself, and not from a memory card. I really need photos from the Camera folder. When I myself try to recover deleted photos through the programs that you recommended, some unnecessary photos from Telegram, someone’s avatars, but not photos from the camera are recovered at all. Is it possible to restore them?

Answer. Indeed, although developers claim that their programs will recover files in all areas of memory, in fact most of the data is ignored during scanning - either there are not enough rights, or the program simply does not know how to do it. If you have enough experience, take a snapshot of the device’s internal memory according to our instructions. The process takes a lot of time, but there is a chance that among other garbage you will find exactly the photos you need. In addition, it is absolutely free way recovery, so you can experiment in your free time.

1. Bought new phone(ZTE Blade X3), I wanted to move the memory card from my old phone, but I forgot to turn off the new phone before doing so. All the photos from the phone’s internal memory disappeared somewhere, but those that were on the memory card remained. There is only one question: how to recover photos from the phone’s internal memory?

2. Accidentally deleted a folder with photos in the internal memory of the phone. As a result, the photos remained in the Android Gallery, but in black and gray, with the inscription “file deleted or damaged.” Is there any way I can restore the photo?

Answer. First, check whether the photos have been copied to the memory card (they may be hidden), check for errors using the chkdsk utility (Windows).

If there are no photos, you can quickly follow the DiskDigger program or take a snapshot of the phone’s internal memory and then, with using PhotoRec or Recuva, return photos.

Trying to return a lost album from the Gallery, I downloaded two Android photo recovery programs. Some of the photos were returned, but not the most valuable ones. How can I try again with minimal risk? I want to try to return the missing photos, is this realistic in the current situation? The photos were stored in the Android's internal memory.

Answer. By repeatedly scanning your phone's internal memory, you do not risk anything. But the longer you use your phone after deleting photos, the lower the chances of recovering them. Any program uses internal memory for its work and can write files to free place. In your case, it is better to take a snapshot of the phone’s internal memory and conduct experiments with it in reading mode.

I want to use your method of restoring Android internal memory, but I don’t have enough space on my C drive - only 17GB, and the partition of the phone takes up 53GB. Is it possible to somehow create a folder for a virtual disk on drive D? Xiaomi phone Redmi Note 4x.

  1. The next problem happened. Images from the camera were saved in the Camera folder on the SD card. When trying to transfer other image folders from internal memory to external memory, the Camera folder was automatically duplicated. I deleted one of the Camera folders, as a result of which the second folder was also deleted. Can you tell me if it is possible to restore these images? The transfer was carried out using a computer, maybe the images remained in the PC’s memory? Information is very important.
  2. There was little memory left on the phone, since all the photos were saved in the internal memory. I found a way - I reset everything from the phone to the PC, while deleting everything from the internal memory. And when I transferred the folder with files to the flash drive, the necessary photos were not there. I tried all recovery programs - nothing worked.

Answer. Check all storage locations for images - hard drive, internal memory and SD card. Most likely, nothing was saved on the hard drive because it did not act as an intermediary (i.e., no files were copied to it).
In the future, we advise you to copy files and delete them only after checking them on the recipient. Copying via ctrl + x is quite unsafe: there are many cases where files were simply lost along the way this way.

my son deleted the photo from his phone (from the internal memory of the device). However, there is no flash card on the phone. How can I restore photo and video materials? I tried it through some programs - some of the photos were restored, but I noticed that these were photos that were once sent to my friends. Is it possible to restore the rest - the ones that I photographed myself? They are very dear to me

Answer. It is possible that the recovery programs you use do not scan those areas of memory from which programs were deleted. If photos are truly important, take the time to recover photos from a copy of your internal memory. We described this method in detail above.

[How to recover a deleted photo from internal memory?]

The phone's internal storage was full, so I deleted the data from the cache. After that, I realized that all my photos and videos were deleted! No backup was performed. I tried recovery apps deleted photos, but I can’t get the photo back. I deleted the files on 5/23/2018 around 10:53 am. What can I do to get the photo back?

Answer. If there is no space left in the internal memory, the data may have been overwritten many times. Therefore, the chances of recovering the photo are minimal. Check if the files you are looking for are on the memory card: suddenly Android camera I wrote files there due to lack of free space in the internal memory.

If you are using mobile device Samsung and backup has been enabled, please check your cloud backup files. It's also a good idea to check your Google Photos albums to see if there are any photos there.

how to recover deleted files? Android and what to do if recuva program can't see the phone? and got the best answer

Answer from Dmitry[guru]
Titanium Backup PRO - link
Titanium Backup is the only one of its kind, the most intelligent and powerful program for saving and restoring application data on Android OS. Working with the program significantly saves time in many cases. For example, if you lose important data after formatting system partition, after flashing your animal, etc. Using the program does not cause any difficulties thanks to the intuitive interface and support for the Russian language.
If you need to create backup copy all available on your Android phone or tablet applications, including system programs, save everything WiFi settings And mobile networks, and then restore your phone or tablet to its original state, no program will do this task better than Titanium Backup.
Platform: android 1.5+
Interface languages: Russian and others

Answer from Hetman Software[guru]
Try Hetman Partition Recovery: link
The program recovers data hard drives and any other storage media under control file systems FAT, NTFS, regardless of the reason for their loss. Including after formatting.


Answer from 3 answers[guru]

Hello! Here is a selection of topics with answers to your question: how to recover deleted files? Android and what to do if the recuva program does not see the phone?

There are several ways to recover lost information from your phone. Such as:

  • backup copy;
  • Google service help;
  • resuscitation programs.

In this article, we will look at each of them in detail and help users in a seemingly hopeless situation.


By creating a backup copy you can protect yourself from loss important information. This can be done using some utilities;

  • 7-Data Android Recovery
  • Titanium Backup
  • Super Backup SMS & Contacts
  • Helium
  • Backup Your Mobile
  • Organizer Mobile
  • Suncit

Recovery mode

Standard environment for resuscitation of any lost data, the simplest way to create a copy of the system. Instructions for Recovery mode.

  1. Turn off your smartphone
  2. Press the power and volume buttons at the same time and hold them until the recovery starts.
  3. After entering Recovery mode, open the backup and restore tab.
  4. In the list that appears, click Reserver copying


Root rights and ways to obtain them

Most applications require root (root) access to the system (super user). This happens because when performing the operation Reserve copy the software must perform low-level interaction with the hardware. This may also involve interaction with the smartphone hardware (storage unit).

To protect the device from receiving any malicious attacks, the developers have established some rules. For example, most smartphones follow MTP protocol. According to it, users cannot interact with the device at an advanced level. Super user rights give full access to the system. You can get them using the utilities:

  • Framaroot
  • VROOT
  • Root master
  • DingDoon

Fortunately, there are many utilities that can return deleted documents without obtaining root access. The best are considered:

  • Dumpster
  • DoctorFone

Doctor Von


This utility will return any information missing from your personal device.
Instructions for using the Doctor Fon program.

  • After launching the application, connect your phone to your PC.
    Enable USB Debugging (optional)
    1) for version 2.3: enter “settings”< «приложения» < далее «Разработка» < проверьте « USB debugging»
    2) for version 3.0 to 4.1: enter "settings"< «параметры разработчика» < проверить « отладка USB»
    3) for version 4.2 e: enter “settings”< «номер сборки» два раза, пока не получите заметку «вы находитесь в режиме разработчика» < обратно в «Настройки» < «параметры разработчика» < « отладка USB
    Note: If the program does not scan anything for a long time after clicking “allow”, check your device again. Sometimes you need to click “allow” several times until it appears again, then the program will start scanning on its own.
  • Select files. To save time, after clicking “next”, select the necessary photos, videos, messages, contacts. Choose standard or advanced mode. The process will take a few minutes. Once the scan is complete, you can view the files that can be returned. After previewing, mark the ones you want to save and click "save".

Resuscitation if your phone is damaged


If you have important documents on your smartphone that you want to access urgently, but cannot do this because the screen is broken and the smartphone does not turn on ADB DATA Recovery tool successfully copes with this task. To do this you need:

  • ADB and Fastboot must be installed on PC
  • USB debugging and developer options.

Additionally, you must have at least 50% battery or more on your device.

Instructions for ADB Data Recovery Tool

  1. Completely turn off the damaged device and reboot it in fastboot mode by pressing the Power+Volume Down button for 4-5 seconds.
  2. After this, you will need to open the folder where you installed ADB and Fastboot as mentioned in the prerequisites section and open a window command line inside it.
  3. Now make sure that the device is connected to the PC correctly. In order to check this, you must enter the following command: fastboot devises devices fast loading[If you see an alphanumeric code on the next line after this command, you can be sure that your phone is connected to the PC]
  4. Now enter the recovery mode by turning off the device again and pressing the Power + Volume Up button for 4-5 seconds and you will see the recovery screen on the device.
  5. After this, you will need to go to the ADB tool that you have downloaded on your PC and open the application.

You will see four system recovery options that we have listed.

  • (OUT)….. OUTPUT LOCATION (default=C:\\RecoveredData)
  • (ADB)….. SET LOCATION (def=C: \\platform-tools)
  • (DEV)….. SET DEVICE TO USE (USB devise or Emulator)
  • (RUN)…..RUN

Now, if you need to change the default output location, you need to enter 1 and continue. You also need to set the location by copying the installation folder path on your device and pasting it into the application. To do this, you need to enter 2, click enter and paste the link to the folder.

You will get the option to retrieve data from the SD card through input 1. Moreover, you can also choose between other options such as retrieving data from DCIM, Media, Music as well as other folders. Save all the data that is available on the SD card. After this step, all information will be pulled through ADB and will be available on the PC for further use.

Using Google


Google Drive- one of best solutions for cloud storage, available on most platforms. You can use it to sync between Google Drive and your device, and any changes made on the server to the associated local folder are reflected in real time.

After Google installations Drive utility will automatically use its account. It will then ask you to grant special permissions to access the data on the drive and perform preliminary setup.

Select one of the folders in your phone memory that you want to link to Google cloud storage for synchronization. Create a new one, if you don’t already have one selected, link it to the Google Drive storage in the next step.

Reanimation programs

Returning data via iReparo

iReparo - software for returning deleted information, successfully resuscitates data from any gadget. The user only needs to connect his device to the computer using a cable, then he needs to launch the utility. iReparo will scan data on the internal memory and external SD card of the connected device. Once the scan is completed, users can view the lost files and selectively resuscitate them.

Instructions for using iReparo

  1. Install iReparo on PC
  2. Launch the program.
  3. Select the files you want to return.
  4. Connect android to PC
  5. Follow the onscreen instructions to program and enable debugging.
  6. When the phone is recognized, press the Start button to scan
  7. Move your mouse and click on each category to view the scan result. Lost and orphaned files are marked in a different color.
  8. Mark the information that needs to be restored, then click the “save” button.

Resuscitation via Recuva

Recuva is one of the best resuscitation programs. Software is easy to use and can return almost any important photos, music, pictures, just connect your gadget to your computer.

Step by step guide on using Recuva.

  1. Run the utility, then check necessary files. Next Next".
  2. In the next window, select the disk with the missing data and click “Start”. If it is not visible, you need to click the “refresh” icon.
  3. After scanning is completed, mark what you want to save from the results page, and then click on “ Reset", save them to a memory card or any other medium.


FoneLab

Solves many problems Android systems, such as stuck in startup mode, random formatting, black screen and others. With its help, you can see and view the data that you want to revive. The process is very fast, all results are saved to the computer. The utility itself will open the storage, where it will automatically save the information.

EaseUS Mobisaver

Allows you to easily find and view deleted or lost documents (music, games, pictures, etc. After connecting your tablet or other gadget to your personal PC, the application will start scanning and return all your lost photos, videos, images, contacts.

7-Data Android Recovery

The utility needed to recover information from a smartphone to operating system android. If personal documents were accidentally lost, the application will easily help you solve this problem. If the program does not see the phone, it means that your device model is not supported.

Conclusion

  • Trust only proven and licensed applications
  • Always save your contacts in Google storage, use cloud synchronization
  • Be sure to store your backup copy on a separate medium to avoid future loss of documents

Video

The Recuva program from Piriform is one of the worthy representatives of tools for recovering deleted data (for example, after formatting or damage to removable drives). By the way, the Piriform company made another one good program– Speccy, we have her.

You can download Recuva completely free of charge on the official website. There is also a paid version (as of February 2018, its cost is 800 rubles), but it does not provide any serious advantages. When installing, do not forget to select Russian language and refuse to install CCleaner:

  • DiskDigger - review and instructions for recovering deleted files
  • How to transfer from iPhone to iPhone - instructions with pictures
  • The SD card is damaged - recovery procedure
  • How to recover data using Recuva

    After starting the program, a wizard will automatically launch to help you recover lost data. You can specify the type of files you want to recover, this will speed up the search (you can select types: images, videos, documents, and so on):

    Be sure to specify the path to the drive you want to search on, because by default Recuva will search for files wherever possible. This will take a very long time, and a huge number It will be difficult to find any results.

    If the files were simply deleted, Recuva will easily find them and offer to restore them:

    If your drive has been formatted, and in other difficult cases, Recuva will offer you an in-depth analysis - agree. It can take quite a long time, depending on the disk size:

    After finishing the search, click the “Go to advanced mode” button, you will see something like this:

    There can be quite a lot of elements, because Recuva will also find long-deleted files and folders. You can sort files by type, size, or location. All that remains is to select the necessary files and click the “Recover...” button.

    Publications on the topic