Demo program showing the LocalFileSystem in use

Dependencies:   mbed

main.cpp

Committer:
chris
Date:
2010-03-03
Revision:
1:021abaf618c9
Parent:
0:53141d94b116

File content as of revision 1:021abaf618c9:

#include "mbed.h"

LocalFileSystem local("local"); 

int main() {

    FILE *fp = fopen("/local/test.txt", "w"); 
    fprintf(fp, "Hello file system!\n");
    fclose(fp);
}