1. 程式人生 > >怎麼建立資料夾呢?mkdir、mkdirs、createNewFile

怎麼建立資料夾呢?mkdir、mkdirs、createNewFile

建立資料夾 File file = new File(Environment.getExternalStorageDirectory()+File.separator+"資料夾名"+File.separator); if (!file.exists()){     file.mkdirs(); } 建立檔案 File file = new File(Environment.getExternalStorageDirectory()+File.separator+"資料夾名"+File.separator,"檔名(包括字尾名)"); if (!file.exists()){     file.createNewFile(); } mkdir:只能用來建立資料夾,且只能建立一級目錄,如果上級不存在,就會建立失敗。  mkdirs:只能用來建立資料夾,且能建立多級目錄 ,如果上級不存在,就會自動建立。(建立資料夾多用此)  createNewFile:只能用來建立檔案,且只能在已存在的目錄下建立檔案,否則會建立失敗。(FileOutputStream os=new FileOutputStream(file)也可建立檔案,看情況使用) ---------------------  作者:小Niu  來源:CSDN  原文:https://blog.csdn.net/qq_23263825/article/details/53842731  版權宣告:本文為博主原創文章,轉載請附上博文連結!