fso獲取資料夾下檔案個數和顯示檔名(無字尾)

2021-05-03 21:17:53 字數 755 閱讀 5879

感謝sayhito333提供給我這段**,為表示感謝,不修改其宣傳性的函式名了,呵呵!

<%

path = "database/"

sub sayhito333(path)

dim fso

dim objfolder

dim objfiles

dim

objfile

dim n

set fso=server.createobject("scripting.filesystemobject")

set

"資料夾"&path&"包含的檔案個數為:"

response.write objfiles.count&"個

"for each

objfile in objfiles

n=instr(objfile.name,".")

response.write "---"&left(objfile.name,n-

1)&"

"next

set objfile=nothing

set objfiles=nothing

set objfolder=nothing

set

fso=nothing

end sub

call sayhito333(path)

%>

linux檢視資料夾下檔案個數

或find company type f wc l 檢視某資料夾下檔案的個數,包括子資料夾裡的。ls lr grep wc l 檢視某資料夾下資料夾的個數,包括子資料夾裡的。ls lr grep d wc l 說明 ls l 長列表輸出該目錄下檔案資訊 注意這裡的檔案,不同於一般的檔案,可能是目錄 ...

linux統計資料夾下檔案 資料夾的個數和大小

一 統計資料夾 檔案個數 1 統計某資料夾下檔案的個數 ls l grep wc l 2 統計某資料夾下目錄的個數 ls l grep wc l 3 統計資料夾下檔案的個數,包括子資料夾裡的 ls lr grep wc l 4 統計 imagedata data 20161108目錄 包含子目錄 下...

python 資料夾下檔案及資料夾名稱獲取

python 資料夾下檔案及資料夾名稱獲取 import os dirct d data dirlist filelist files os.listdir dirct 資料夾下所有目錄的列表 print files files for f in files if os.path.isdir dir...