Utils.py 203 B

12345678910
  1. import os
  2. def get_arxml_path(matrix_path: str):
  3. files = os.listdir(matrix_path)
  4. for file in files:
  5. if '.arxml' in file:
  6. return os.path.join(matrix_path, file)
  7. return ''