X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/70702af1370e44e32fb2c3c507e4759a187b4fe5:/fatfs/doc/res/app2.c..289f6a146c0b2087607d8d8659531ea90142779a:/fatfs/documents/res/app2.c diff --git a/fatfs/doc/res/app2.c b/fatfs/documents/res/app2.c similarity index 84% rename from fatfs/doc/res/app2.c rename to fatfs/documents/res/app2.c index 5108543..3de3eee 100644 --- a/fatfs/doc/res/app2.c +++ b/fatfs/documents/res/app2.c @@ -1,9 +1,11 @@ /*------------------------------------------------------------/ / Remove all contents of a directory -/ This function works regardless of _FS_RPATH. +/ This function works regardless of FF_FS_RPATH. /------------------------------------------------------------*/ +FILINFO fno; + FRESULT empty_directory ( char* path /* Working buffer filled with start directory */ ) @@ -11,11 +13,7 @@ FRESULT empty_directory ( UINT i, j; FRESULT fr; DIR dir; - FILINFO fno; -#if _USE_LFN - fno.lfname = 0; /* Disable LFN output */ -#endif fr = f_opendir(&dir, path); if (fr == FR_OK) { for (i = 0; path[i]; i++) ; @@ -48,7 +46,7 @@ int main (void) { FRESULT fr; FATFS fs; - char buff[64]; /* Working buffer */ + char buff[256]; /* Working buffer */