範例二_取得特定檔案路徑: output_File = [] for root, dirs, files in os.walk("."): for name in files: print(os.path.join(root, name))
確定! 回上一頁