Where are the backup files of my iPhone by iTune and how to get the real files from them?

I backup my iPhone with iTune to my local computer. Where can I find out the backup files of my iPhone by iTune? And how to get the real files (like songs, notes, etc.) from the backup files?

The location of the backup files from iTune

It depends on the computer’s operating system:

Mac: ~/Library/Application Support/MobileSync/Backup/

Windows XP: Documents and Settings(username)Application DataApple ComputerMobileSyncBackup

Windows Vista and Windows 7: Users(username)AppDataRoamingApple ComputerMobileSyncBackup

Note: To quickly access the AppData folder, click Start. In the search bar, type %appdata% and press the Return key.

To extract files in the backup

Use the iPhone Backup Extractor software. It has a free edition which I find is sufficient for most need.


With iOS 7, Apple has changed quite a lot with its filesystem and changes are going to be larger with iOS8 release as Apple moves more towards openness.

If you had created a backup of your device on your system (and not on iCloud), then they would be present under the AppData (Application Data) folder on Windows and under /Application Support/Mobile Sync on Mac.

Now, if you are an expert with computers, you can use a sqlite explorer/editor to open up those files. They are sqlitedb files and will contain all of the information.
Unless, you chose the option to encrypt the iTunes backup which would have encrypted those files and opening them with a query browser will not be possible. To unencrypt the files use total saver pro http://www.myphonedata.com/products/totalsaverpro

It will also extract the data for you from those files.

Hope this helps!

Ron

Similar Posts

  • How to make a swap partition

    How to make a swap partition on Linux? First, make a new partition (or reuse an existing one if you like). I suggest using cfdisk to create it: https://www.systutorials.com/docs/linux/man/8-cfdisk/ Then, turn the new partition (say, /dev/sdc1) to a swap # mkswap /dev/sdc1 Lastly, turn it on # swapon /dev/sdc1 You can check whether its status…

  • Force Linux to reboot

    How to force Linux to reboot when the reboot command does not work. Enable the use of the magic SysRq option: # echo 1 > /proc/sys/kernel/sysrq Reboot the machine: # echo b > /proc/sysrq-trigger Even if you could not log on the system but sshd is working, you can force the Linux to reboot by:…

  • Emacs highlighting part of lines that go over 80 chars

    How to make Emacs highlighting part of lines that go over 80 chars? I use the whitespace mode: ;; `lines-tail`, highlight the part that goes beyond the ;; limit of `whitespace-line-column` (require ‘whitespace) (setq whitespace-style ‘(face empty tabs lines-tail trailing)) (global-whitespace-mode t) More: https://github.com/zma/emacs-config/blob/master/.emacs Alternatively, you can run highlight-lines-matching-regexp with the expression .{81}. http://stackoverflow.com/questions/6344474/how-can-i-make-emacs-highlight-lines-that-go-over-80-chars Read…

  • How to turn my iPhone to a mouse?

    iPhone has the touch screen. Is is possible to turn my iPhone to a wireless mouse on Linux? Use the WiFi Mouse app/server: http://wifimouse.necta.us/ First, install the WiFi Mouse app on you iPhone: https://itunes.apple.com/app/id591076411?mt=8 Second, install the WiFi Mouse server downloaded from http://wifimouse.necta.us/ If you are using Fedora Linux, you need to convert the .deb…

Leave a Reply

Your email address will not be published. Required fields are marked *