您好,登錄后才能下訂單哦!
如何使用python組織文件?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
shutil其實也就是shell模塊。其中包含一些函數,可以讓我們在python程序中復制、移動、改名和刪除文件。
shutil.copy(source,destination):將路徑source處的文件復制到路徑destination處的文件夾。如果destination是一個文件名,那么它將作為被復制的新名字
shutil.copytree(source,destination):將路徑source處的文件夾,包括它的所有文件和子文件夾,復制到路徑destination處的文件夾。
import shutil import os current_path = os.getcwd() # 拷貝test.txt 文件到temp1文件夾下 shutil.copy(current_path+"/test.txt",current_path+"/Python/temp1") # 將temp1文件夾內容拷貝到temp2文件夾下,此時會創建temp2文件夾 shutil.copytree(current_path+"/Python/temp1",current_path+"/Python/temp2")
結果:
shutil.move(source,destination):將source處的文件夾移動到路徑destination,并返回新位置的絕對路徑的字符串
注:
如果destination指向一個文件夾,source文件將移動到destination中,并保持原來的文件名;
如果destination指向一個文件,這個文件就會被覆蓋,注意!
如果destination指向一個不存在的文件夾,這個時候source里面的內容會移動到destination,source改名為destination
import shutil import os current_path = os.getcwd() # 將temp2文件夾內的文件拷貝到temp中,并將temp2改名為temp shutil.move(current_path+"/Python/temp2",current_path+"/temp")
結果:
os.unlink(path):將刪除path處的文件
os.rmdir(path):將刪除path處的文件夾。該文件夾必須為空,其中沒有任何文件和文件夾
shutil.retree(path):將刪除path處的文件夾,它包含的所有文件和文件夾都會被刪除
import shutil import os current_path = os.getcwd() shutil.rmtree(current_path+"/temp")
結果:
os.walk(path):通過傳入一個路徑
os.walk()在循環的每次迭代中,返回三個值:
1.當前文件夾名稱的字符串
2.當前文件夾中子文件夾的字符串的列表
3.當前文件夾中文件的字符串的列表
import shutil import os current_path = os.getcwd() for folder_name,sub_folders,file_names in os.walk(current_path): print(folder_name+":") # 加載當前文件路徑下的所有子文件 for sub_folder in sub_folders: print("\t"+folder_name+": "+sub_folder+"(dir)") for file_name in file_names: print("\t"+folder_name+": "+file_name)
輸出(部分):
ubuntu@VM-0-2-ubuntu:~/python_file$ /usr/bin/python3 /home/ubuntu/python_file/Python/orignize_files.py
/home/ubuntu/python_file:
/home/ubuntu/python_file: .vscode(dir)
/home/ubuntu/python_file: Python(dir)
/home/ubuntu/python_file: test.cpp
/home/ubuntu/python_file: test.txt
/home/ubuntu/python_file: tempCodeRunnerFile.py
/home/ubuntu/python_file/.vscode:
/home/ubuntu/python_file/.vscode: db(dir)
/home/ubuntu/python_file/.vscode: .git(dir)
/home/ubuntu/python_file/.vscode: log(dir)
/home/ubuntu/python_file/.vscode: settings.json
/home/ubuntu/python_file/.vscode/db:
/home/ubuntu/python_file/.vscode/db: cpptips.db-wal
/home/ubuntu/python_file/.vscode/db: cpptips.db-shm
/home/ubuntu/python_file/.vscode/db: cpptips.db
/home/ubuntu/python_file/.vscode/.git:
/home/ubuntu/python_file/.vscode/.git: 6eb7a60f73d1a1d9bdf44f2e86d7f4cc_test.cpp
/home/ubuntu/python_file/.vscode/log:
/home/ubuntu/python_file/.vscode/log: cpptips.server.2021-05-19.log
/home/ubuntu/python_file/.vscode/log: cpptips.server.2021-05-16.log
/home/ubuntu/python_file/.vscode/log: cpptips.server.2021-05-17.log
/home/ubuntu/python_file/.vscode/log: cpptips.client.log
/home/ubuntu/python_file/.vscode/log: cpptips.server.log
/home/ubuntu/python_file/Python:
/home/ubuntu/python_file/Python: temp1(dir)
/home/ubuntu/python_file/Python: .git(dir)
/home/ubuntu/python_file/Python: README.md
/home/ubuntu/python_file/Python: hello_world.py
/home/ubuntu/python_file/Python: orignize_files.py
/home/ubuntu/python_file/Python: regex.py
/home/ubuntu/python_file/Python: file_mange.py
.........
.........
.........
利用zipfile模塊中的函數,python程序可以創建和打開ZIP文件。
想要創建ZIP文件,必須用ZipFile
方法創建一個ZipFile對象。ZipFile對象在概念上和File對象相似。
之后,以寫模式打開這個對象。調用write()
方法傳入一個路徑,python就會壓縮該路徑所指的文件,將它加到ZIP文件中。write的第一個參數是一個字符串,代表要添加的文件名。第二個參數是”壓縮類型“參數,告訴計算機使用怎樣的算法來壓縮文件。一般來說,ZIP_DEFLATED就可以了。
import zipfile import os current_path = os.getcwd() new_zip = zipfile.ZipFile("newZip","w") new_zip.write("test.txt",compress_type=zipfile.ZIP_DEFLATED) new_zip.write("test.cpp",compress_type=zipfile.ZIP_DEFLATED)
結果:
當用ZipFile函數打開一個zip文件的時候,會返回一個ZipFile對象。之后調用這個對象的namelist()
方法就可以獲得zip里面的壓縮文件列表。
同時這個對象還有一個getinfo()方法,通過傳入一個壓縮文件名,就可以獲得這個文件的一些信息。
import zipfile import os current_path = os.getcwd() new_zip = zipfile.ZipFile("newZip","r") files = new_zip.namelist() for file in files: info = new_zip.getinfo(file) print("filename: "+file) print("\tsize: "+str(info.file_size)) print("\tcompress_size: "+str(info.compress_size))
輸出:
ubuntu@VM-0-2-ubuntu:~/python_file$ /usr/bin/python3 /home/ubuntu/python_file/Python/orignize_files.py
filename: test.txt
size: 26
compress_size: 26
filename: test.cpp
size: 30
compress_size: 28
ZipFile對象的extractall方法從ZIP文件中解壓縮所有的文件和文件夾,放到當前工作目錄下:
import zipfile import os current_path = os.getcwd() example_zip = zipfile.ZipFile("newZip","r") # 解壓 example_zip.extractall() example_zip.close()
結果:
Python主要應用于:1、Web開發;2、數據科學研究;3、網絡爬蟲;4、嵌入式應用開發;5、游戲開發;6、桌面應用開發。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。