python入門 統計路徑下資料夾數和檔案數

2021-10-25 05:31:34 字數 801 閱讀 2564

**:

#coding:utf-8

import os

sdir =

0sfile =

0def

statis

(dir):

#獲取目標檔案中的所有檔案資訊

dlist = os.listdir(

dir)

#定義統計變數

global sfile

global sdir

#便利所有檔案執行檔案統計

for f in dlist:

file1 = os.path.join(

dir, f)

#判斷是否是檔案

if os.path.isfile(file1)

: sfile +=

1#判斷是否是資料夾

if os.path.isdir(file1)

: sdir +=

1 statis(file1)

return sdir,sfile

k =str

(input

('請輸入要查詢的路徑:'))

a = statis(k)

print

('該路徑下共有{}個資料夾,{}個檔案'

.format

(a[0

],a[1]

))

執行效果:

tomcat下檔案路徑

root資料夾下 訪問路徑為 localhost 8080 a.txt 訪問路徑 localhost 8080 test b.txt 第二種 在tomcat安裝路徑下的conf server.xml檔案中,找到host節點元素,在host節點內定義子節點context節點,該節點必須定義docbas...

Linux Mac下檔案統計相關

ls test dir wc wls test dir wc cls l test dir grep wc lls l test dir grep d wc lls lr test dir grep wc lls l 表示的是長列表輸出當前資料夾下的檔案資訊 furuiyang furuiyangd...

WinCE下檔案的路徑

在wince下,不能用相對路徑,必須用絕對路徑 full path 來定位檔案。如,在program files testprogram目錄下的abc.txt檔案,只能用 program files testprogram abc.txt來定位,而不能用abc.txt定位。如 private voi...