import shutil
import os
def get_files():
source = os.listdir("/output_folder/sample/cufflinks/")
destination = "output_folder/assemblies.txt"
for files in source:
if files.with("transcripts.gtf"):
shutil.move(files,destination)
我要檢索transcripts.gtf
文件從"/output_folder/sample/cufflinks/"
到assemblies.txt
。上面的代碼是否正確。請幫助我。謝謝 !!Python腳本來檢索文件從文件夾的路徑到一個文本文件
是什麼讓你覺得這是不對的?它與你期望的行爲有什麼不同? –
爲什麼不測試它並告訴我們它是否按照您期望的方式工作? – ILostMySpoon
你有代碼評論審查你的代碼! http://codereview.stackexchange.com/ –