2016. 2. 22. 05:34

Editor
- Application.dataPath /*project*/Assets


Web Player

 System.IO.Path.GetFullPath(".")

 %Project%

 Application.dataPath

 %Project%/Assets

 Application.persistentDataPath

 %userprofile%\AppData\LocalLow/%Company%/%Product%

 Application.streamingAssetsPath

 %Project%/Assets/StreamingAssets

 Application.temporaryCachePath

 %LocalAppData%/Local/Temp/Temp/%Company%/%Product%



Android

 System.IO.Path.GetFullPath(".")

 /

 Application.dataPath

 /data/app/%BundleIdentifier%.apk

 Application.persistentDataPath

 /data/data/%BundleIdentifier%/files

 Application.streamingAssetsPath

 jar:file:///data/app/%BundleIdentifier%.apk/!/assets

 Application.temporaryCachePath

 /data/data/%BundleIdentifier%/cache


Android sdcard

 Application.persistentDataPath

 /mnt/sdcard/Android/data/%BundleIdentifier%/files

 Application.streamingAssetsPath

 jar:file:///data/app/%BundleIdentifier%.apk/!/assets

 Application.temporaryCachePathz

 /mnt/sdcard/Android/data/%BundleIdentifier%/cache


iOS

 System.IO.Path.GetFullPath(".")

 /

 Application.dataPath

 %ProvisioningProfile%/%BundleIdentifier%.app/Data

 Application.persistentDataPath

 %ProvisioningProfile%/Documents

 Application.streamingAssetsPath

 %ProvisioningProfile%/%BundleIdentifier%.app/Data/Raw

 Application.temporaryCachePath

 %ProvisioningProfile%/Library/Caches


// ** iPhone device
- Application.dataPath /var/mobile/Applications/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/Assets
- Application.persistentDataPath : /var/mobile/Applications/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/Documents
- Application.temporaryCachePath : /var/mobile/Applications/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/Library/Caches
- iPhpone Simulator Path : /Users/<Name>/Library/Application Support/iPhone Simulator/4.1/Applications/<GUID>/
 
// ** Android
- Application.dataPath /mnt/asec/com.xxx.xxx/pkg.apk
- Application.persistentDataPath /data/data/com.xxx.xxx/files/
- Application.temporaryCachePath /data/data/com.xxx.xxx/cache/
* sdcard 사용시.
- Application.persistentDataPath /mnt/sdcard/Android/data/com.xxx.xxx/files/
- Application.temporaryCachePath /mnt/sdcard/Android/data/com.xxx.xxx/cache/



출처 : 

ttp://topgames.tistory.com/entry/%EC%9C%A0%EB%8B%88%ED%8B%B0-%ED%94%8C%EB%9E%AB%ED%8F%BC%EB%B3%84-%EA%B2%BD%EB%A1%9C%EB%93%A4

Posted by 시리시안