uos.py 326 B

12345678910111213141516171819
  1. #
  2. # Copyright (c) 2006-2019, RT-Thread Development Team
  3. #
  4. # SPDX-License-Identifier: MIT License
  5. #
  6. # Change Logs:
  7. # Date Author Notes
  8. # 2019-06-13 SummerGift first version
  9. #
  10. import uos
  11. uos.mkdir("rtthread")
  12. uos.getcwd()
  13. uos.chdir("rtthread")
  14. uos.getcwd()
  15. uos.listdir()
  16. uos.rmdir("11")
  17. uos.listdir()