os模块def copy(self,src_path,target_path): os.mkdir(target_path) if os.path.isdir(src_path): for file in os.listdir(src_path): ...
確定! 回上一頁