码迷,mamicode.com
首页 > 移动开发 > 详细

android中对sd卡的 操作文件问题 创建目录 创建文件到指定目录

时间:2014-09-26 14:09:18      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:android   文件   sp   问题   on   c   r   new   bs   

步骤

1

获取sd卡的路径

File root =Environment.getExternalStorageDirectory();

2

确定要写文件的路径

String path =root.getAbsolutePath()+"/test2"+"/test3";

3

再把路径转化为file

File file =new File(path);

4创建目录

file.mkdir();

5在上述指定的目录写指定的文件

File file1 = new File(file,"Test.png");

一定要注意   path 与file的区别,还有一定要先建目录,在写文件·······

android中对sd卡的 操作文件问题 创建目录 创建文件到指定目录

标签:android   文件   sp   问题   on   c   r   new   bs   

原文地址:http://www.cnblogs.com/jiefeiduan/p/3994598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!