| 12345678910111213141516171819202122 |
- import subprocess
- import os
- def check_shell(cmd):
- """
- shell successful
- """
- res = os.system(cmd)
- assert res == 0
- def count_folders_and_check_contents(file_path):
- """"
- 获取文件夹大小
- """
- if os.path.exists(file_path):
- folder_count = os.path.getsize(file_path)
- assert folder_count > 0
- if __name__ == "__main__":
- count_folders_and_check_contents("/home/quyuan/code/Magic-PDF/Magic-PDF/Magic-PDF/ci")
|