與操做系統交互,能夠操控文件python
os模塊負責程序與操做系統的交互,提供了訪問操做系統底層的接口,多用於文件處理。linux
import os os.getcwd() # 獲取當前文件目錄 os.mkdir('m2') # 建立一個文件夾 os.rmdir('m2') # 刪除文件夾 # *************(常常用到) res = os.listdir(r'D:\上海Python11期視頻\python11期視頻\day 17') # 列出全部文件 print(res) os.rename('test.py','test1.py') os.remove('test1.py') # __file__只有pychamr才提供,python自己不支持 print('os.path.abspath(__file__):',os.path.abspath(__file__)) # 支持不一樣的平臺(windows,ios,andirod,linux,unix) # print('__file__:',__file__) print(os.path.exists('01 包.py')) # 文件不存在False,存在True print(os.path.isfile('01 包.py')) # 是否爲文件 print(os.path.isdir('01 包.py')) # 是否爲文件夾 # ********(常用) # 支持不一樣的平臺(windows,ios,andirod,linux,unix) res = os.path.join(r'D:\上海Python11期視頻\python11期視頻\day 17\m1\bbb','m5.py') # 拼接文件路徑 res = os.path.join(r'D:\上海Python11期視頻\python11期視頻\day 17\m1\bbb','m5','test.py') # 拼接文件路徑 # print(r'D:\上海Python11期視頻\python11期視頻\day 17\m1\bb'+'\m5.py') print(res) # ******* (常用) print(os.path.abspath(__file__)) print(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
方法 | 詳解 |
---|---|
os.getcwd() | 獲取當前工做目錄,即當前python腳本工做的目錄路徑 |
os.chdir("dirname") | 改變當前腳本工做目錄;至關於shell下cd |
os.curdir | 返回當前目錄: ('.') |
os.pardir | 獲取當前目錄的父目錄字符串名:('..') |
os.makedirs('dirname1/dirname2') | 可生成多層遞歸目錄 |
os.removedirs('dirname1') | 若目錄爲空,則刪除,並遞歸到上一級目錄,如若也爲空,則刪除,依此類推 |
os.mkdir('dirname') | 生成單級目錄;至關於shell中mkdir dirname |
os.rmdir('dirname') | 刪除單級空目錄,若目錄不爲空則沒法刪除,報錯;至關於shell中rmdir dirname |
os.listdir('dirname') | 列出指定目錄下的全部文件和子目錄,包括隱藏文件,並以列表方式打印 |
os.remove() | 刪除一個文件 |
os.rename("oldname","newname") | 重命名文件/目錄 |
os.stat('path/filename') | 獲取文件/目錄信息 |
os.sep | 輸出操做系統特定的路徑分隔符,win下爲"",Linux下爲"/" |
os.linesep | 輸出當前平臺使用的行終止符,win下爲"\t\n",Linux下爲"\n" |
os.pathsep | 輸出用於分割文件路徑的字符串 win下爲;,Linux下爲: |
os.name | 輸出字符串指示當前使用平臺。win->'nt'; Linux->'posix' |
os.system("bash command") | 運行shell命令,直接顯示 |
os.environ | 獲取系統環境變量 |
os.path.abspath(path) | 返回path規範化的絕對路徑 |
os.path.split(path) | 將path分割成目錄和文件名二元組返回 |
os.path.dirname(path) | 返回path的目錄。其實就是os.path.split(path)的第一個元素 |
os.path.basename(path) | 返回path最後的文件名。如何path以/或\結尾,那麼就會返回空值。即os.path.split(path)的第二個元素 |
os.path.exists(path) | 若是path存在,返回True;若是path不存在,返回False |
os.path.isabs(path) | 若是path是絕對路徑,返回True |
os.path.isfile(path) | 若是path是一個存在的文件,返回True。不然返回False |
os.path.isdir(path) | 若是path是一個存在的目錄,則返回True。不然返回False |
os.path.join(path1[, path2[, ...]]) | 將多個路徑組合後返回,第一個絕對路徑以前的參數將被忽略 |
os.path.getatime(path) | 返回path所指向的文件或者目錄的最後存取時間 |
os.path.getmtime(path) | 返回path所指向的文件或者目錄的最後修改時間 |
列題ios
計算代碼函數(給出文件夾路徑,計算文件夾下全部py文件的路徑;給出py文件,計算py文件的代碼行數)shell
ef count_line(files): count = 0 if files.endswith('.py'): with open (files,'r',encoding='utf8') as fr: data = fr.read().split('\n') for i in data: if i.startswith('#') or i == '\n': continue else: count += 1 print('files代碼行數:',count) else: if os.path.isdir(files): for dir, _, file_path_list in os.walk(files): print(dir,file_path_list) for file_path in file_path_list: try: file_path = os.path.join(dir, file_path) path_list = file_path.split('.') file_count = 0 if path_list[-1] == 'py': with open(file_path, 'r', encoding='utf8') as fr: for line in fr: if line.startswith('#') or line == '\n': continue else: count += 1 file_count += 1 print(f'{file_path}有{file_count}行') except Exception: print(f'該文件{file_path}有問題') continue count_line(r'E:\python folder\正式班\day17')