zoukankan      html  css  js  c++  java
  • Android-彻底理解文件存储

     
    All Android devices have two file storage areas: "internal" and "external" storage. These names come from the early days of Android, when most devices offered built-in non-volatile memory (internal storage), plus a removable storage medium such as a micro SD card (external storage). Some devices divide the permanent storage space into "internal" and "external" partitions, so even without a removable storage medium, there are always two storage spaces and the API behavior is the same whether the external storage is removable or not. The following lists summarize the facts about each storage space.
     
    总结:
      1. Internal storage:
        1. 只有当前app可以访问;
        2. 卸载时删除;
        3. getFileDir(),返回/data/data/com.dhn.test/files
        4. getCacheDir(),返回 /data/data/com.dhn.test/cache
      2. External storage:
        1. public:
          1. 所有app都可以访问
          2. 卸载时保留
          3. Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MUSIC):返回/storage/emulated/0/Music
        2. private:
          1. 所有app都可以访问
          2. 卸载时会删除
          3. getExternalFilesDir(Environment.DIRECTORY_MUSIC):返回/storage/emulated/0/Android/data/com.dhn.test/files/Music
      3. 注意点:无论使用public还是private的External storage时,使用api提供的常量作为目录名(DIRECTORY_RINGTONES),这样会被系统识别为铃声,而不是音乐。
      4. 实验:
         1 // /storage/emulated/0
         2 // sc卡根路径,卸载时会保留
         3 File f1 = Environment.getExternalStorageDirectory();
         4 Log.e("Main", f1.getAbsolutePath());
         5 
         6 // /storage/emulated/0/Music
         7 File f2 = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MUSIC);
         8 Log.e("Main", f2.getAbsolutePath());
         9 
        10 // /data/data/com.dhn.test/files
        11 File f3 = getFilesDir();
        12 Log.e("Main", f3.getAbsolutePath());
        13 
        14 File f4 = getCacheDir();
        15 Log.e("Main", f4.getAbsolutePath());
        16 
        17 // /storage/emulated/0/Android/data/com.dhn.test/files/Music
        18 // 在SD卡中,卸载时会被删除
        19 File f5 = getExternalFilesDir(Environment.DIRECTORY_MUSIC);
        20 Log.e("Main", f5.getAbsolutePath());
         
  • 相关阅读:
    golang:bson.ObjectId与string转化
    Go语言的序列化与反序列化(gob)
    Go语言使用匿名结构体解析JSON数据
    Java课程设计---创建数据库工具类
    Java课程设计---实现登录(1)
    Java课程设计---新建项目及导入如何jar包
    Java课程设计---Eclipse基本环境配置
    Java课程设计---WindowBuilder插件安装
    Spring简单介绍
    【软件工程】简单考试题
  • 原文地址:https://www.cnblogs.com/gatsbydhn/p/5175298.html
Copyright © 2011-2022 走看看