aboutsummaryrefslogtreecommitdiff
path: root/libraries/Bridge/examples/FileTest/FileTest.ino
blob: 3fd7ce9801abce011a629375d94dcbf81b2801c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <FileIO.h>

void setup() {
  Bridge.begin();
  SD.begin();

  boolean r;
  r=SD.exists("/arduino/test");
  if (r) error("1");
  r=SD.exists("/arduino");
  if (!r) error("2");

  r=SD.mkdir("/arduino/test");
  if (!r) error("3");
  r=SD.exists("/arduino/test");
  if (!r) error("4");

  File f = SD.open("/arduino/test/bla", FILE_WRITE);
  if (!f) error("5");
  f.println("CIAO!");
  f.close();

  delay(10000);

  r=SD.rmdir("/arduino/test");
  if (r) error("6");
  r=SD.remove("/arduino/test");
  if (r) error("7");
  
  r=SD.remove("/arduino/test/bla");
  if (!r) error("8");
  r=SD.rmdir("/arduino/test");
  if (!r) error("9");
  r=SD.exists("/arduino/test");
  if (r) error("10");
}


void error(const char *s) {
  Bridge.print("# ERROR ");
  Bridge.println(s);
  while (true);
}

void loop() {
}