Have you ever lost important notes on your smartphone and couldnโ€™t find them? Or tried to transfer text entries from one device to another, but did not know where exactly they were stored? The problem is that different note-taking applications on Android use different ways to save data - from cloud servers to hidden folders in the phone's memory. In this article we will look at popular apps, how to find them through the file manager, and what to do if the Suddenly entries have disappeared. where the note files are physically located in popular apps, how to find them through the file manager, and what to do if Suddenly entries have disappeared.

Many users mistakenly think that notes are stored only in the โ€œcloudโ€ and cannot be retrieved without the Internet. In fact, most applications duplicate data locally - in system folders or database SQLite. Knowing the exact paths, you can manually copy files, make a backup copy, or even restore deleted entries using special utilities. And if you use third-party applications like Evernote or OneNote, then the storage mechanism will differ from the standard Google Keep.

It is important to understand: the location of the files depends not only on the application, but also on the version Android, the smartphone manufacturer (on Samsung, Xiaomi and Google Pixel paths may differ) and even on whether the application is installed on internal memory or SD card. We have collected current data for the most popular services and added search instructions - from simple browsing through Files by Google to using ADB for advanced users.

1. Standard Notes app on Android: where files are searched

Most smartphones have a proprietary notes application installed by default - Google Keep (on "pure" Android) or alternatives from the manufacturer: Samsung Notes, Mi Notes (Xiaomi), Huawei Notes and others. These apps store data in different ways, but they have common features:

  • ๐Ÿ“ฑ Google Keep: the data is synchronized with the account Google and stored in the cloud, but a local copy is created in the folder /data/data/com.google.android.keep (access only with root access).
  • ๐Ÿ“ฑ Samsung Notes: the files are located in /data/data/com.samsung.android.app.notes (root required) or in a folder Samsung/Notes on the internal drive (if backup is enabled).
  • ๐Ÿ“ฑ Mi Notes (Xiaomi): notes are saved in the database along the path /data/data/com.miui.notes, and media files (photos, audio) - in MIUI/Notes.
  • ๐Ÿ“ฑ Huawei Notes: uses the cloud Huawei Cloud, but local copies can be found in /data/data/com.huawei.notes.

The main problem: folders /data/data/ hidden from the user without root access. If it is not there, the only thing that will help you is a backup through the app settings or the cloud. However, there is a workaround: connect your smartphone to your PC and use ADB (Android Debug Bridge) to extract the files. For example, the command to copy a database Google Keep:

adb pull /data/data/com.google.android.keep/databases/keep.db

For Samsung Notes the path will be different:

adb pull /data/data/com.samsung.android.app.notes/databases/notes.db
๐Ÿ’ก

If you have root access, use a file manager Root Explorer or FX File Explorer โ€”they allow you to view system folders without ADB.

Third-party note apps often offer more features, but also store data differently. Let's look at the most common ones:

Application Path to local files Cloud synchronization Storage format
Evernote /data/data/com.evernote/ (database)
/Android/data/com.evernote/files/ (attachments)
Yes (required) SQLite + encrypted files
Microsoft OneNote /data/data/com.microsoft.office.onenote/ Yes (via OneDrive) SQLite + cloud caching
ColorNote /data/data/com.socialnmobile.dictapps.notepad.color.note/
/sdcard/ColorNoteBackups/ (backup copies)
No (locally only) Text files + database
Simple Note /data/data/com.automattic.simplenote/ Yes (via account WordPress) JSON format

Evernote and OneNote highly dependent on cloud synchronization: even if you find local files, they may be encrypted or incomplete. But ColorNote is one of the few applications that allows export notes to a readable format (TXT or XML) directly from the interface To do this:

  1. Open ColorNote and click on the three dots in the upper right corner.
  2. Select Settings โ†’ Backup/Restore.
  3. Click Create a backup copy โ€” file will be saved in /sdcard/ColorNoteBackups/.
๐Ÿ“Š What application for notes do you use?
Google Keep
Samsung Notes
Evernote
OneNote
ColorNote
Other

If you have lost access to your account in Evernote or OneNote, it will be extremely difficult to restore notes without the cloud. In cases, only preliminary data export or backups via ADB.

3. How to find note files without root access: step-by-step guide

Not everyone has root access, but this does not mean that note files are inaccessible. Here's what you can do:

Use the built-in backup export in the application|Connect your smartphone to the PC and view the folders via ADB|Try file managers with access to system folders (for example, Solid Explorer)|Check cloud services (Google Drive, OneDrive) for automatic backups-->

The easiest way is to use built-in export functions. For example, Google Keep:

  1. Open a note and click on the three dots.
  2. Select Send โ†’ Copy to Google Doc.
  3. The document will be saved in Google Drive, from where you can download it.

For Samsung Notes the path is:

  1. Go to Settings โ†’ Export notes.
  2. Select format (.snb or .pdf).
  3. The file will be saved in the folder Download or SD card.

If there is no built-in export, try ADB (without root):

  1. Enable Debugging USB in the developer settings.
  2. Connect your phone to the PC and run the command:
    adb backup -f backup.ab com.google.android.keep

    (replace com.google.android.keep with your application package).

  3. The resulting file backup.ab can be opened using Android Backup Extractor.
What to do if ADB does not see the device?

Make sure that the drivers for your smartphone are installed (download them from the manufacturerโ€™s website). Also check if USB debugging is enabled in the developer settings (activated by 7 clicks on โ€œBuild Numberโ€ in the phone information).

4. Where are media files from notes stored (photos, audio, screenshots)

Many applications allow you to add not only text to notes, but also photos, audio recordings, PDF. These files are stored separately from the text and are usually located in open folders. For example:

  • ๐Ÿ“ธ Google Keep: media files are stored in /storage/emulated/0/Android/data/com.google.android.keep/files/.
  • ๐ŸŽต Evernote: attachments are in /Android/data/com.evernote/files/ (folders attachments, thumbnails).
  • ๐Ÿ“„ Samsung Notes: files are stored in /storage/emulated/0/Samsung/Notes/ (if saving to device is enabled).
  • ๐Ÿ–ผ๏ธ ColorNote: media from notes can be found in /sdcard/ColorNote/.

Important: some applications (for example, OneNote) do not save media files locally - they are downloaded only when you open a note from the cloud. If you want to save attachments forever, export them manually:

  1. Open a note with a media file.
  2. Click on the attachment (photo, audio) and select Save as... or Share.
  3. Copy the file to a folder Download or to SD card.
๐Ÿ’ก

If you deleted a note, but the media files from it remained in the application folder, you can restore them manually - just transfer the files to a new one note.

5. Recovering deleted notes: possible methods

Deleted an important note and donโ€™t know how to get it back? Recovering methods depend on the application:

  • ๐Ÿ—‘๏ธ Google Keep: notes are stored in the cloud for 7 days after deletion. Go to Archive or Trash in the side menu.
  • ๐Ÿ”„ Evernote: deleted notes can be found in Trash (stored for up to 30 days for free accounts).
  • ๐Ÿ“ฑ Samsung Notes: check the folder Trash in the application (stored for up to 15 days).
  • ๐Ÿ› ๏ธ Without recycle bin: if the application does not support recovery (for example, ColorNote), try apps like DiskDigger or Recuva (root required).

If the note is permanently deleted, but you have backup (for example, via Titanium Backup or ADB), restore it like this:

  1. Download the backup file (for example, notes.db).
  2. Use ADB to return it to its place:
    adb push notes.db /data/data/com.samsung.android.app.notes/databases/
  3. Restart the application.
๐Ÿ’ก

If you regularly lose notes, set up automatic backup to the cloud (Google Drive, Dropbox) or export data once a week manually.

For recovery without root you can try the following trick (does not work on all devices):

  1. Install a file manager with access to root folders (for example, FX File Explorer).
  2. Try to open the folder /data/data/application_package_name/databases/ via the built-in explorer (sometimes this works on older versions of Android).
  3. Copy database files to your PC and open them using SQLite Browser.

6. Transfer notes to another smartphone or PC

If you bought a new phone or want to work with notes on a computer, here's how to transfer them:

App Transfer method Instructions
Google Keep Cloud synchronization Automatically synchronizes with your Google account. Just sign in on your new device.
Samsung Notes Export to .snb + Samsung Cloud Export notes to a file and import on a new phone via Settings โ†’ Import.
Evernote Cloud + export to .enex Use File โ†’ Export to save notes in format .enex (can be opened on a PC).
ColorNote Local backup Create a backup copy in Settings โ†’ Backup and transfer the file .xml to a new device.

To transfer to a PC:

  1. Export notes to a universal format (.txt, .pdf, .html).
  2. Connect your phone to your computer and copy the files.
  3. Use web versions of applications (for example, keep.google.com for Google Keep).

If you transfer notes between different applications (for example, from Samsung Notes to Google Keep), use an intermediate format:

  1. Export notes to .txt or .pdf.
  2. Open the file on your PC and copy the text.
  3. Paste the text into a new application manually.
๐Ÿ’ก

For mass transfer of notes between services (for example, from Evernote to OneNote) use specialized tools like Exporter for Evernote or OneNote Importer.

7. Security: how to protect notes from loss or theft

Notes often contain confidential information: passwords, ideas, personal data. Here's how to protect them:

  • ๐Ÿ”’ Encryption: use applications that support encryption (for example, Standard Notes or Cryptomator).
  • ๐Ÿ”„ Automatic backup: set up synchronization with the cloud (Google Drive, Dropbox).
  • ๐Ÿ“ฑ Local protection: set a password for the application itself (available in Samsung Notes, ColorNote).
  • ๐Ÿšซ Access restriction: disable saving notes to SD card (it's easier to steal).

To enable encryption Standard Notes:

  1. Go to Settings โ†’ Account.
  2. Activate End-to-End Encryption and set a password.
  3. Now all notes will be are encrypted and inaccessible without a password.

For Samsung Notes:

  1. Open the note and click on the three dots.
  2. Select Block and set a PIN or fingerprint.
๐Ÿ’ก

If you store passwords in notes, it is better to use specialized managers like Bitwarden or 1Password โ€”they protect your data more reliably.

Don't forget about two-factor authentication for cloud accounts (Google, Evernote, OneNote). This will protect your notes even if someone finds out your password.

8. Frequent problems and their solutions

Users often encounter common errors when working with notes. Here are the most common ones and how to fix them:

  • โŒ Notes are not synced: check your Internet connection and account settings. To Google Keep go to Settings โ†’ Google Accounts โ†’ Synchronization.
  • โŒ The application does not open old notes: the database may be damaged. Try clearing the application cache in Settings โ†’ Applications.
  • โŒ Cannot export notes: update the application to the latest version or use alternative methods (for example, ADB).
  • โŒ Notes disappeared after updating Android: check your backup folder or restore data from the cloud.

If notes disappeared after resetting the phone to factory settings, try:

  1. Log in to the same Google/Evernote/Samsung account that was used previously.
  2. Check folder Android/backup/ for automatic backups.
  3. Use apps for data recovery (Dr.Fone, Tenorshare UltData).
What to do if notes are not restored from the cloud?

Check whether the account email has changed (for example, if you used a work account and then quit). Also make sure that there is enough space on the device for synchronization - sometimes notes are not loaded due to full memory.

If none of the methods help, contact service support (for Evernote, OneNote) or to the smartphone manufacturer's forum (for Samsung Notes, Mi NotesAttach screenshots of errors and indicate your phone model - this will speed up the solution to the problem.

FAQ: Answers to frequently asked questions

Is it possible to transfer notes from Samsung Notes to Google Keep?

There is no direct import, but you can:

  1. Export notes from Samsung Notes to format .snb or .pdf.
  2. Open the file on your PC and copy the text.
  3. Insert the text manually into Google Keep (via the web version or application).

For mass transfer, use services like NoteSwap (paid).

Where are notes stored in the Notepad application from Xiaomi?

The application Mi Notes (Notepad) saves data in:

  • /data/data/com.miui.notes/ (database, requires root).
  • /MIUI/Notes/ (media files if saving to the device is enabled).

For backup, use the built-in function: Settings โ†’ Backup.

How to recover notes from Google Keep after deleting your Google account?

If the account is permanently deleted, restore the notes You cannot โ€”they are linked to mail. If the account is simply disconnected from the phone:

  1. Login it again through Settings โ†’ Accounts.
  2. Open Google Keep - notes should appear automatically.

If your account was deleted less than 20 days ago, try restoring it through Google's recovery page.

Is it possible to save notes from ColorNote to Google Drive?

Yes, but only manually:

  1. Create a backup in ColorNote (Settings โ†’ Backup).
  2. The file .xml will be saved in /sdcard/ColorNoteBackups/.
  3. Download it in Google Drive via file manager or application Disk.
Why do notes in Evernote take up a lot of space on the phone?

The reason is caching media files and offline access. To free up space:

  1. Go to Settings โ†’ Storage.
  2. Click Clear cache.
  3. Disable offline mode for unnecessary notepads.

You can also limit the cache size in the application settings.

If your question is not covered in the FAQ, check the official application documentation or contact support. Technical problems (such as database errors) may require specialist assistance.