What You're Looking For and Where It Lives
Samsung phones store contact data in a few standard locations, and you can pull that information out without using Samsung's built-in backup tools. The most common place is the contacts database file, usually named something like contacts.db or stored in the phone's internal messaging or contacts app folder. If you've already backed up your phone or extracted its files to a computer, you're looking for folders named /data/data/com.android.contacts/ or /data/data/com.samsung.android.contacts/.
The actual contact records live in SQLite database files—a format that looks like gibberish when you open it in a text editor, but contains all the phone numbers, email addresses, and names in an organized structure. You can also find contact information in vCard files (ending in .vcf), which are plain-text contact files that are much easier to read and work with directly.
Key Takeaways
- Samsung contacts are stored in SQLite database files located in the phone's /data/data/ folder, which you must extract using a file manager or computer connection first.
- You can read contact data from vCard files (.vcf) in any text editor, or convert SQLite database files using free tools like DB Browser for SQLite.
- If you have a Samsung backup file (created through Settings > Accounts and Backup), you can extract contacts from it using Samsung Smart Switch on a computer.
- The fastest method for most people is to export contacts directly from the phone's Contacts app to a vCard file before the phone is damaged or inaccessible.
Extracting Files from Your Samsung Phone to a Computer
Before you can pull contact data, you need to get the phone's files onto a computer. Connect your Samsung phone to a Windows or Mac computer using a USB cable. On the phone, swipe down from the top twice to open the full notification panel, then tap the USB connection notification and select File Transfer (not "Charging Only").
On your computer, open the file manager (File Explorer on Windows, Finder on Mac). Your phone should appear as a removable drive or device. Navigate to Internal Storage or Phone Storage, then look for the Android folder. Inside that, open data, then data again (yes, it's nested), then search for folders starting with com.android.contacts or com.samsung.android.contacts. Copy these entire folders to your computer's desktop or a dedicated folder.
If your phone won't turn on or connect, you may need to use Samsung's Find Mobile or a data recovery tool, but those are separate processes. For a working phone, the USB file transfer method is the most straightforward.
Reading Contact Data from vCard Files
If you find .vcf files in the folders you copied, you're in luck—these are human-readable. Right-click any .vcf file and open it with Notepad (Windows) or TextEdit (Mac). You'll see contact information formatted like this:
BEGIN:VCARD VERSION:3.0 FN:John Smith TEL:555-0123 EMAIL:john@example.com END:VCARD
Each contact is a separate block. You can copy and paste this information into a spreadsheet, a new contact list, or any other program. If you have multiple vCard files, you can open them all in a text editor and copy the entire contents into a single file, then import that combined file into your new phone or contact manager.
Converting SQLite Database Files to Readable Format
If you only find .db files and no .vcf files, you'll need to convert the database. read DB Browser for SQLite (free, available at sqlitebrowser.org) on your computer. Open the program, click Open Database, and navigate to the contacts.db file you copied from your phone.
Once the database opens, you'll see a list of tables on the left side. Look for a table named contacts or raw_contacts. Click on it, and you'll see columns for names, phone numbers, and email addresses. Right-click on the table name and select Export as CSV or Export as JSON. Save the file to your desktop. You can now open this CSV file in Excel, Google Sheets, or any spreadsheet program, and the contact information will be organized in columns.
If you see multiple tables (like data or mimetypes), the contacts table is usually the one you want. Some Samsung phones split contact information across tables, so if the first table doesn't have all the details you need, try exporting the data table as well.
Using Samsung Smart Switch to Extract from Backup Files
If you have a Samsung backup file (usually created through Settings > Accounts and Backup > Samsung Cloud or Settings > Accounts and Backup > Backup and Restore), you can pull contacts from it without the phone itself. read Samsung Smart Switch (free, available at samsung.com/us/support/downloads) on your computer.
Open Smart Switch and select Restore. Choose Restore from backup file and navigate to your Samsung backup file. The program will show you a preview of what's in the backup, including contacts. You don't have to complete the full restore—just let it scan the file, then take screenshots or notes of the contact information you need. Alternatively, if you have another Samsung phone available, you can use Smart Switch to restore the backup to that phone, then export the contacts from there.
Common Problems and What to Do
If you can't find the contacts folders in /data/data/, your phone may have restricted access to that directory. Some Samsung phones require developer mode to be enabled. On your phone, go to Settings > About Phone and tap Build Number seven times. Go back to Settings, open Developer Options (now visible), and enable USB Debugging. Reconnect to your computer and try again.
If the database file is corrupted or won't open in DB Browser, try opening it with a different tool. SQLiteOnline (sqliteonline.com) is a web-based option that sometimes reads damaged files better than desktop software. Upload your .db file there and browse the tables directly in your browser.
If you're seeing contact files but they're empty or contain only partial information, check whether your phone was syncing contacts to Google, Samsung Cloud, or another service. Those synced contacts may not be stored locally on the phone at all. In that case, sign into your Google account or Samsung account on a computer and read your contacts from there instead.
Organizing and Importing Your Extracted Contacts
Once you have your contact data in a readable format (vCard, CSV, or JSON), you can import it into a new phone or contact manager. For a new Samsung phone, go to Contacts > Menu (three dots) > Settings > Import/Export > Import from file and select your vCard or CSV file. For other Android phones, the process is similar but the menu path varies—check your phone's Contacts app settings.
If you're moving to an iPhone, you'll need to convert your contacts to vCard format first (most CSV-to-vCard converters are available free online). For cloud services like Google Contacts or Outlook, upload your CSV file directly—both services have import tools that recognize contact columns automatically.
Frequently Asked Questions
Can I pull contacts from a Samsung phone that won't turn on?
Not using the USB file transfer method. You would need specialized data recovery software or hardware, which is beyond basic file extraction. If the phone has a Samsung Cloud backup, you can recover contacts from that instead by signing into your Samsung account on another device.
What if I only see encrypted or locked database files?
Some Samsung phones encrypt the contacts database if a PIN or password is set. You'll need to unlock the phone first, then extract the files. If you can't unlock it, data recovery services are your only option.
Will extracting contacts delete them from my Samsung phone?
No. Copying files from your phone to a computer does not remove them from the phone. The contacts remain on the device.
Can I extract contacts from a Samsung phone I don't own?
Only if you have the device unlocked and in your possession. Extracting data from someone else's phone without permission is illegal in most places.
What format should I use if I want to share the contacts with someone else?
vCard format (.vcf) is the most universal. Almost every phone, email client, and contact manager can import vCard files. CSV is also widely supported but may require the recipient to map columns manually.