Проверка шаблона шины для iOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sectionNames.py 508B

10 months ago
12345678910111213141516171819
  1. import os
  2. def sectionNames(c):
  3. prefix = "Section"
  4. ending = ".swift"
  5. fileNames = os.listdir(c.src)
  6. items = []
  7. for fileName in sorted(fileNames):
  8. # Пропускаем файлы, не являющиеся секциями.
  9. id = fileName.find(prefix)
  10. if id == -1:
  11. continue
  12. # Вычленяем имя секции из имени файла.
  13. name = fileName[id + len(prefix):-len(ending)]
  14. items.append(name)
  15. return items