根據檔案字尾名自動分類

2021-09-24 18:40:33 字數 489 閱讀 2376

根據檔案字尾名不同,自動將檔案分類至不同的資料夾

//根據檔案字尾名來實現檔案自動分類至不同目錄下

//定義要分類的檔案所在的檔案目錄

private static final string file_path = "f:/批量檔案";

public static void main(string args) throws ioexception

//判斷是否是xls

if (filename.endswith(".xls")||filename.endswith(".xlsx"))

//判斷是否是ppt

if (filename.endswith(".ppt")||filename.endswith("pptx"))

//判斷是否是pdf

if (filename.endswith(".pdf"))

}} }

自動根據壓縮檔案的字尾名進行解壓

bin bash 本指令碼實現根據檔案的字尾名進行解壓 日期 2016 7 23 usage list filename 1 要解壓的檔案 path 2 解壓到路徑名 ext 獲取檔名的字尾 if z filename then 判斷使用者是否輸入了第一引數 usage elif filename ...

擷取檔案字尾名

擷取給的檔名的字尾名 在這裡要注意可能出現的檔案是否有字尾名,例如.abc和abc.其實這兩種是沒有字尾名的,所以判斷切片 的索引位置必須有所限制 def foo filename,has dot false 獲取檔名的字尾名 param filename 檔名 param has dot 字尾名是...

獲取檔案字尾名

獲取到filename的字尾 利用lastindexof 從最後面截字尾,找到最後乙個點的索引然後加一,利用substring擷取該索引後的字串 f.getfilename substring f.getfilename lastindexof 1 lastindexof 方法有以下四種形式 pub...