import os # List all files in a directory using os.listdir basepath = 'my_directory/' for entry in os.listdir(basepath): if ...
確定! 回上一頁