java 檔案 資料夾操作指南

2021-08-31 07:52:51 字數 1162 閱讀 4093

列舉了一些這個專案中用到的檔案/資料夾操作的函式,以備後用。

/*** 計算資料夾大小

*/public static final long getdirectorysize( file dir )

file entries = dir.listfiles();

int count = entries.length;

for ( int i = 0; i < count; i++ ) else

}return retsize;

}  

/*** 刪除資料夾

*/public static final boolean deletedirectory( file dir ) else

}dir.delete();

bret = true;

}return bret;

}/**

* 新建資料夾

*/public static final void createdirectory( string strdir )

} /**

* 移動檔案

*/public static final void movefile( string stroriginal, string strdest ) throws ioexception catch ( ioexception e )

}/**

* 讀取檔案

*/private string readfile( file file ) else }}

reader.close();

} catch ( ioexception e )

}return text;

}/**

* 寫入檔案

*/private boolean writefile( file file, string text ) catch ( ioexception e )

}/**

* 資料夾中的檔案按檔名排序(公升序)

*/file   files = ( new file( strpicturedirectory ) ).listfiles();

file temp;

for ( int i = 0; i < files.length; i++ ) }}

www.taobaowang-gw.com

JAVA檔案 資料夾操作實用函式

列舉了一些這個專案中用到的檔案 資料夾操作的函式,以備後用。計算資料夾大小 public static final long getdirectorysize file dir file entries dir.listfiles int count entries.length for int i...

java 刪除檔案 刪除資料夾操作

刪除單個檔案 param spath 被刪除檔案的路徑 檔名 return 單個檔案刪除成功返回true,否則返回false public static boolean deletefile string spath return flag 刪除目錄 資料夾 以及目錄下的檔案 param spath...

拷貝檔案 資料夾 建立資料夾 刪除資料夾操作

qt拷貝檔案 資料夾 建立資料夾 刪除資料夾操作 cpp view plain copy brief 拷貝檔案到目的資料夾 param srcfilename 原始檔全路徑,比如 f tx wwxx.txt f tx des desd param desfilepathname 要copy到的目的路...