要運行文件夾下的所有文件,可以使用以下代碼:
import os
folder_path = "文件夾路徑"
for filename in os.listdir(folder_path):
if filename.endswith(".py"):
file_path = os.path.join(folder_path, filename) # 獲取文件的完整路徑
exec(open(file_path).read()) # 運行文件
將文件夾路徑
替換為你要運行的文件夾的路徑。代碼將遍歷文件夾中的所有文件,如果文件以.py
結尾,則使用exec
函數來運行文件。請注意,這將運行文件中的所有代碼,包括全局代碼和函數定義等。