I need a list of Internal iPhone directories, specifically for 3rd party apps...
I can find the shortcut for Applications which is all the native and cydia installed apps, but I am looking for the apps that are installed through itunes.
For example, if you SSH into your phone and go to:
Sys/Lib/Audio/uisounds
It brings you to all the native sounds for your iphone, except for Ringtones I believe
So I am looking for the path to find all the 3rd party applications installed.
Those folders are named differently for each phone. They are 'encrypted' so to say. So even if I told you what the folder name is for my Pandora app, it would be different for you.
the path you are looking for is root/var/mobile/applications. in this folder you'll find as many forlders as you have 3rd party apps. Those folders names are encrypted, but by opneing them, you'll have the applicationName.app folder.
The only easy way is to become familiar with the find command. SSH into your phone, and then 'cd' to the Applications directory. Then you can 'find' whatever you are looking for. For instance:
find . -name "GPS"
if you have a Unix-based machine, do 'man find' in a terminal and you can see some specific directions. Or check out the man pages online.
Another way is to use iFind. With this app, when broswing var/mobile/applications you'll see thé name of each app located here. It is thé simpliest way.