예제 #1
0
파일: air_load.py 프로젝트: intip/air_iea
    def handle_file(self, filepath):
        try:
            process_file(filepath)

        except AIRBLK207NotFound, exc:
            print exc
            pass
예제 #2
0
파일: air_load.py 프로젝트: intip/air_iea
 def handle_dir(self, path):
     paths = glob(join(path, "*.*"))
     for path in paths:
         process_file(path)