rewindDirectory()

描述

回到資料夾的第一個檔案。

語法


file.rewindDirectory()

參數

fileSD.open() 回傳的 File 物件

回傳

無回傳值

範例

#include <SD.h>

File root;

void setup()
{
  Serial.begin(9600);

  SD.begin();

  root = SD.open("/");

  printDirectory(root, 0);

  Serial.println("done!");
}

void loop()
{
  // 不做任何事
}

void printDirectory(File dir, int numTabs) {
   while(true) {

     File entry =  dir.openNextFile();
     if (! entry) {
       // 沒有未被開啟的檔案了,回到資料夾的第一個檔案
       dir.rewindDirectory();
       break;
     }
     for (uint8_t i=0; i<numTabs; i++) {
       Serial.print('\t');
     }
     Serial.print(entry.name());
     if (entry.isDirectory()) {
       Serial.println("/");
       printDirectory(entry, numTabs+1);
     } else {
       // 如果是檔案會印出檔案大小
       Serial.print("\t\t");
       Serial.println(entry.size(), DEC);
     }
     entry.close();
   }
}

See Also

open()
openNextFile()
isDirectory()


函式庫參考主頁面

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.