File sd=Environment.getExternalStorageDirectory();
String path=sd.getPath()+"/notes";
File file=new File(path);
if(!file.exists())
file.mkdir();
android 在sd卡中建立文件夹
原文:http://www.cnblogs.com/hao222/p/3517069.html