Files
Stu_scores_system/file_utils.h
T
2025-07-16 00:15:38 +08:00

16 lines
368 B
C

/**
* @file file_utils.h
* @brief 文件操作工具函数头文件
* @note 包含文件和目录操作相关函数声明
*/
#ifndef FILE_UTILS_H
#define FILE_UTILS_H
#include <stdbool.h>
// 文件操作函数
bool fileExists(const char* filename); // 检查文件是否存在
bool createDirectory(const char* path); // 创建目录
#endif // FILE_UTILS_H