file.h 351 B

1234567891011
  1. #ifndef AFUN_FILE_H
  2. #define AFUN_FILE_H
  3. #include "aFunToolExport.h"
  4. /* 文件处理工具 */
  5. AFUN_TOOL_EXPORT int checkFile(char *path);
  6. AFUN_TOOL_EXPORT char *getFileName(char *path_1);
  7. AFUN_TOOL_EXPORT char *fileNameToVar(char *name, bool need_free);
  8. AFUN_TOOL_EXPORT char *findPath(char *path, char *env, bool need_free);
  9. #endif //AFUN_FILE_H