亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

文件和文件夾的增刪查改

發布時間:2020-07-14 23:20:07 來源:網絡 閱讀:173 作者:聽砜 欄目:編程語言
#文件、文件夾的移動、復制、刪除、重命名

#導入shutil模塊和os模塊
import shutil,os

#復制單個文件
shutil.copy("C:\\a\\1.txt","C:\\b")
#復制并重命名新文件
shutil.copy("C:\\a\\2.txt","C:\\b\\121.txt")
#復制整個目錄(備份)
shutil.copytree("C:\\a","C:\\b\\new_a")

#刪除文件
os.unlink("C:\\b\\1.txt")
os.unlink("C:\\b\\121.txt")
#刪除空文件夾
try:
    os.rmdir("C:\\b\\new_a")
except Exception as ex:
    print("錯誤信息:"+str(ex))#提示:錯誤信息,目錄不是空的
#刪除文件夾及內容
shutil.rmtree("C:\\b\\new_a")

#移動文件
shutil.move("C:\\a\\1.txt","C:\\b")
#移動文件夾
shutil.move("C:\\a\\c","C:\\b")

#重命名文件
shutil.move("C:\\a\\2.txt","C:\\a\\new2.txt")
#重命名文件夾
shutil.move("C:\\a\\d","C:\\a\\new_d")

OS模塊的一部分操作

1、獲取與切換當前活動目錄

os.getcwd() —— 獲取當前活動目錄,當前路徑

os.chdir(path) —— 活動目錄切換到path

os.getcwd() # 獲取當前活動目錄
'C:\Software\Python35'
os.chdir('C://') # 活動目錄切換到C:/
os.getcwd() # 獲取當前活動目錄
'C:\'
os.chdir('C:\Software\Python35') # 切換回活動目錄

2、當前路徑或路徑下的文件

os.getcwd() —— 查看當前所在路徑。

os.listdir(path) —— 列舉目錄下的所有文件與目錄。返回list列表。

os.walk(path) —— 列舉目錄下的所有文件與目錄(包含子文件夾)。返回可迭代對象。

import os
os.getcwd() # 獲取當前目錄路徑
'C:\Software\Python35'
os.listdir('.') # 返回當前目錄下目錄與文件
['DLLs', 'Doc', 'include', 'Lib', 'libs', 'LICENSE.txt', ....]
os.listdir(r'C:\Users\Public\SogouInput\USBDT') # 返回路徑下目錄與文件
['OctopusDownloader.exe', 'SgRose.dll']
for root,dirs,files in os.walk('.'):
print(root) # 當前目錄路徑str
print(dirs) # 當前路徑下的所有子目錄list
print(files) # 當前路徑下的所有非目錄的文件

3、目錄的增刪改

os.mkdir(path) —— 創建目錄(只能創建一層)

os.makedirs(path) —— 遞歸創建目錄

os.rename(src ,dst) —— 重命名文件或目錄,從 src 到 dst

os.renames(src ,dst) —— 遞歸地對目錄進行更名,也可以對文件進行更名。

os.rmdir(path) —— 刪除path指定的空目錄,如果目錄非空,則拋出一個OSError異常

os.removedirs(path) 遞歸刪除目錄

os.chdir('C://') # 活動目錄切換到C:/盤下
os.getcwd() # 獲取當前活動目錄
'C:\'
os.mkdir('test') # 在當前活動目錄創建test目錄
os.path.exists('test') # 確認test目錄創建成功
True
os.rename('test','test001') # test重命名為test001
'test' in os.listdir('.') # 確認文件或目錄是否存在
False
'test001' in os.listdir('.')
True
os.rmdir('test001') # 刪除test001目錄
'test001' in os.listdir('.')
False

4、文件的增刪改

os.remove(path) —— 刪除指定文件

os.rename(src ,dst) —— 重命名文件或目錄,從 src 到 dst

文件新增在打開寫入模式時創建os.open("文件名", os.O_CREAT)或open("文件名",’w’)

fo=os.open("test.txt", os.O_CREAT) # 創建并打開文件
'test.txt' in os.listdir('.') # 判斷文件是否存在
True
os.close(fo) # 關閉打開文件
os.rename('test.txt','test001.txt') # 重命名文件
'test.txt' in os.listdir('.')
False
'test001.txt' in os.listdir('.')
True
os.remove('test001.txt') # 刪除文件
'test001.txt' in os.listdir('.')
False

5、相對路徑轉換為絕對路徑

os.path.abspath(path) —— 返回path的絕對路徑

os.path.isabs(path) —— 是否是絕對路徑

os.path.abspath('.') # . 表示當前目錄
'C:\Software\Python35'
os.path.abspath('..') # .. 表示上級目錄
'C:\Software'
os.path.isabs('C:\Software\Python35') # 路徑是否為絕對路徑
True
os.path.isabs('..') # 路徑是否為相對路徑
False

6、獲取路徑中的文件名與文件目錄部分

os.path.basename(path) —— 去掉目錄路徑獲取文件名

os.path.dirname(path) —— 去掉文件名獲取目錄

path='C:\Software\Python35\python.exe'
os.path.basename(path)
'python.exe'
os.path.dirname(path)
'C:\Software\Python35'

7、判斷路徑是文件還是文件夾

os.path.isdir(path) —— 是否是目錄

os.path.isfile(path) —— 是否是文件

當文件或者目錄不存在是返回False

os.path.isfile('C:\Software\Python35\python.exe') # 是否為文件
True
os.path.isfile('C:\Software\Python35')
False
os.path.isfile('.\python.exe') # 可以使用相對路徑
True
os.path.isdir('C:\Software\Python35')
True
os.path.isdir('python.exe')
False
os.path.isdir('.')
True

8、查看文件或目錄是否存在

os.path.exists(path) —— 文件或目錄是否存在,返回True 或 False

os.path.exists('lib')
True
os.path.exists('.\python125.exe')
False

9、查看文件時間

os.path.getmtime(path) —— 文件或文件夾的最后修改時間,從新紀元到訪問時的秒數。

os.path.getatime(path) —— 文件或文件夾的最后訪問時間,從新紀元到訪問時的秒數。

os.path.getctime(path) —— 文件或文件夾的創建時間,從新紀元到訪問時的秒數。

10、查看文件大小

os.path.getsize(path) —— 文件或文件夾的大小,若是文件夾返回0

11、路徑合成與拆分

os.path.split(path) —— 將路徑分解為(文件夾,文件名)的元組

os.path.join(path2,path3,...) —— 將path進行組合,若其中有絕對路徑,則之前的path將被刪除

path='C:\Software\Python35\python.exe'
os.path.split(path) # 拆分路徑
('C:\Software\Python35', 'python.exe')
os.path.split('.')
('', '.')
os.path.split('C:\Software\Python35') # 注意于下一行的區別
('C:\Software', 'Python35')
os.path.split('C:\Software\Python35\')
('C:\Software\Python35', '')
os.path.join('C:\Software\Python35', 'python.exe')
'C:\Software\Python35\python.exe'
os.path.join('C:\Software\Python35\a\b', 'C:\Software\Python35\c')
'C:\Software\Python35\c'

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临高县| 逊克县| 宜良县| 方正县| 安远县| 东海县| 通化县| 黑水县| 库车县| 泰安市| 运城市| 台前县| 手游| 昌江| 成安县| 湘潭县| 阿克陶县| 武鸣县| 霸州市| 惠来县| 略阳县| 瓦房店市| 无棣县| 渭南市| 朝阳市| 龙海市| 德化县| 昌邑市| 普安县| 西吉县| 广安市| 乐山市| 广水市| 永春县| 延边| 牟定县| 台州市| 庆安县| 嘉黎县| 台安县| 马龙县|