소스 검색

Add rename()

main
PaulStoffregen 4 년 전
부모
커밋
c5292aeb8b
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      src/SD.h

+ 3
- 0
src/SD.h 파일 보기

@@ -137,6 +137,9 @@ public:
bool mkdir(const char *filepath) {
return sdfs.mkdir(filepath);
}
bool rename(const char *oldfilepath, const char *newfilepath) {
return sdfs.remame(oldfilepath, newfilepath);
}
bool remove(const char *filepath) {
return sdfs.remove(filepath);
}

Loading…
취소
저장