pyhon ---之 os.listdir()
Python os.listdir() 方法
概述
os.listdir() 方法用於返回指定的資料夾包含的檔案或資料夾的名字的列表。這個列表以字母順序。 它不包括 '.' 和'..' 即使它在資料夾中。
只支援在 Unix, Windows 下使用。
語法
listdir()方法語法格式如下:
os.listdir(path)
引數
path -- 需要列出的目錄路徑
返回值
返回指定路徑下的檔案和資料夾列表。
例項
以下例項演示了 listdir() 方法的使用:
#!/usr/bin/python # -*- coding: UTF-8 -*- import os, sys # 開啟檔案 path = "/var/www/html/" dirs = os.listdir( path ) # 輸出所有檔案和資料夾 for file in dirs: print file
執行以上程式輸出結果為:
test.htm stamp faq.htm _vti_txt robots.txt itemlisting resumelisting writing_effective_resume.htm advertisebusiness.htm papers resume http://www.runoob.com/python/os-listdir.html 轉載:http://www.runoob.com/python/os-listdir.html
相關文章
- pyhon---之argparse
- Pyhon的繼承繼承
- python os.walk()和os.listdir()Python
- python菜鳥開發日記-基於pyhon及django進行公司打卡系統的破解PythonDjango
- 最簡單的網路圖片的爬取 --Pyhon網路爬蟲與資訊獲取爬蟲
- 漢字之美,拼音之韻
- PHP之string之ord()函式使用PHP函式
- 深入Spring之IOC之載入BeanDefinitionSpringBean
- JavaScript之thisJavaScript
- 若之
- 計算方法之祖沖之的精度
- Kubernetes安裝之八:配置master之schedulerAST
- vue 兄弟元件之間傳值之busVue元件
- 《碼農翻身》之浪潮之巔的WebWeb
- 揭秘ORACLE備份之----RMAN之五(CATALOG)Oracle
- React之元件(component)之間的通訊React元件
- PHP之string之str_split()函式使用PHP函式
- AI犯錯誰之過?切勿盲目相信之AI
- Java常用資料結構之Set之TreeSetJava資料結構
- PHP之string之str_pad()函式使用PHP函式
- flutter之從零開始搭建(一)之 BottomNavigationBarFlutterNavigation
- kubernetes實踐之五十五:kubectl之配置kubeconfig
- 序列SRAM和FRAM之間的相似之處
- 計算機網路之HTTP之概況計算機網路HTTP
- 前端之資料模擬之Mock.js前端MockJS
- RxSwift 之 ObservableSwift
- nodejsApi之httpNodeJSAPIHTTP
- Apache之HttpClientApacheHTTPclient
- JavaScript之argumentsJavaScript
- jQuery之documentFragmentjQueryFragment
- Python之MVCPythonMVC
- css之displayCSS
- MYSQL之 GroupCommitMySqlMIT
- CSS之居中CSS
- python之禪Python
- SpringCloud之EurekaSpringGCCloud
- linux之lvmLinuxLVM
- Golang之美Golang