stat_sample.c 938 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. *
  9. */
  10. /*
  11. * 程序清单:取得状态
  12. *
  13. * 程序会创建一个操作文件的函数并导出到msh命令列表
  14. * 在函数中调用 stat() 函数
  15. * int stat(const char *file_name, struct stat *buf);
  16. * stat()函数用来将参数file_name 所指向的文件状态,
  17. * 复制到buf 指针所指的结构中(struct stat)。
  18. */
  19. #include <rtthread.h>
  20. #include <dfs_posix.h> /* 当需要使用文件操作时,需要包含这个头文件 */
  21. static void stat_sample(void)
  22. {
  23. int ret;
  24. struct stat buf;
  25. ret = stat("/text.txt", &buf);
  26. if (ret == 0)
  27. rt_kprintf("text.txt file size = %d\n", buf.st_size);
  28. else
  29. rt_kprintf("text.txt file not fonud\n");
  30. }
  31. /* 导出到 msh 命令列表中 */
  32. MSH_CMD_EXPORT(stat_sample, show text.txt stat sample);