Lines Matching refs:file
7 # you may not use this file except in compliance with the License.
32 Load the cfg file in JSON format
43 raise ValidateError('cfg error,please use json file replace xml process name: ' + field['name'])
51 for file in os.listdir(cfg_dir):
52 if file.endswith(".cfg"):
53 services_name |= parse_cfg_file("{}/{}".format(cfg_dir, file))
62 for file in os.listdir(lib_dir):
63 if not file.startswith('lib') or not file.endswith('_filter.z.so'):
66 front_pos = file.find('lib') + 3
67 rear_pos = file.find('_filter.z.so')
68 name = file[front_pos : rear_pos]