zoukankan      html  css  js  c++  java
  • Unity客户端路径

    Unity 之 Application各种路径在终端的本地路径

    • dataPath:

      1. 返回程序的数据文件所在的文件夹的路径(只读)。
      2. 返回路径为相对路径,一般是相对于程序安装目录的位置。
      3. 不同游戏平台的数据文件保存路径不同。
    • StreamingAssetsPath:

      1. 此属性用于返回数据流的缓存目录,返回路径为相对路径,适合设置一些外部数据文件的路径。(只读)
    • PersistentDataPath:

      1. 返回一个持久化数据存储目录的路径,可以在此路径下存储一些持久化的数据文件。
      2. 对于同一平台,在不同程序中调用此属性时,其返回值是相同的,但是在不同的运行平台下,其返回值是不一样的。
    • temporaryCachePath:

      1. 此属性用于返回一个临时数据的缓冲目录(只读)。
      2. 对于同一平台,在不同程序中调用此属性时,其返回值是相同的,但是在不同的运行平台下,其返回值是不一样的。
    • persistentDataPath和temporaryCachePath的返回值一般是程序所在平台的固定位置,适合程序在运行过程中产生的数据文件。

    • 具体路径

      • PC:
        • Application.dataPath : /Assets
        • Application.streamingAssetsPath : /Assets/StreamingAssets
        • Application.persistentDataPath : C:/Users/xxxx/AppData/LocalLow/CompanyName/ProductName
        • Application.temporaryCachePath : C:/Users/xxxx/AppData/Local/Temp/CompanyName/ProductName
      • Android:
        • Application.dataPath : /data/app/xxx.xxx.xxx.apk
        • Application.streamingAssetsPath : jar:file:///data/app/xxx.xxx.xxx.apk/!/assets
        • Application.persistentDataPath : /data/data/xxx.xxx.xxx/files
        • Application.temporaryCachePath : /data/data/xxx.xxx.xxx/cache
      • IOS:
        • Application.dataPath : Application/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/xxx.app/Data
        • Application.streamingAssetsPath : Application/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/xxx.app/Data/Raw
        • Application.persistentDataPath : Application/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/Documents
        • Application.temporaryCachePath : Application/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/Library/Caches
      • Mac:
        • Application.dataPath : /Assets
        • Application.streamingAssetsPath : /Assets/StreamingAssets
        • Application.persistentDataPath : /Users/xxxx/Library/Caches/CompanyName/Product Name
        • Application.temporaryCachePath : /var/folders/57/6b4_9w8113x2fsmzx_yhrhvh0000gn/T/CompanyName/Product Name
  • 相关阅读:
    【网摘】sql 语句修改字段名称以及字段类型
    转:关于bugfree的一些不得不说的事
    excel打乱各行的顺序,实现无序随机排列
    易语言报错:无法定位链接器!请检查 toolslink.ini 中的配置是否正确。 静态连接失败
    关于a标签的onclick和href谁先执行的问题
    关于a标签的onclick和href谁先执行的问题
    关于a标签的onclick和href谁先执行的问题
    易语言-子程序的参数属性
    SQL 随机取出一条数据
    为梦想,每天坚持30分钟
  • 原文地址:https://www.cnblogs.com/sweetXiaoma/p/12704945.html
Copyright © 2011-2022 走看看