avdl_file_op.h 358 B

12345678910111213
  1. #ifndef _FILE_OPERATIONS_H_
  2. #define _FILE_OPERATIONS_H_
  3. #include <stdio.h>
  4. int file_copy(const char *src, const char *dest, int append);
  5. int file_copy_at(int src_at, const char *src, int dest_at, const char *dest, int append);
  6. int dir_copy_recursive(int src_at, const char *src, int dst_at, const char *dst);
  7. int dir_create(const char *filename);
  8. #endif