import os. d = "dir" for path in os.listdir(d): full_path = os.path.join(d, path) if os.path.isfile(full_path): print full_path ...
確定! 回上一頁