ソースを参照

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);
}

読み込み中…
キャンセル
保存