浏览代码

Add rename()

main
PaulStoffregen 4 年前
父节点
当前提交
c5292aeb8b
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      src/SD.h

+ 3
- 0
src/SD.h 查看文件

bool mkdir(const char *filepath) { bool mkdir(const char *filepath) {
return sdfs.mkdir(filepath); return sdfs.mkdir(filepath);
} }
bool rename(const char *oldfilepath, const char *newfilepath) {
return sdfs.remame(oldfilepath, newfilepath);
}
bool remove(const char *filepath) { bool remove(const char *filepath) {
return sdfs.remove(filepath); return sdfs.remove(filepath);
} }

正在加载...
取消
保存