mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
661 B
35 lines
661 B
9 years ago
|
#include "web-server.h"
|
||
|
|
||
|
#include "espfs.h"
|
||
|
#include "config.h"
|
||
|
|
||
|
void ICACHE_FLASH_ATTR webServerBrowseFiles()
|
||
|
{
|
||
|
EspFsIterator it;
|
||
|
espFsIteratorInit(userPageCtx, &it);
|
||
|
{
|
||
|
while( espFsIteratorNext(&it) )
|
||
|
{
|
||
|
if( strlen(it.name) >= 6 )
|
||
|
{
|
||
|
if( os_strcmp( it.name + strlen(it.name)-5, ".html" ) == 0 )
|
||
|
{
|
||
|
os_printf("%s\n", it.name); // TODO
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ICACHE_FLASH_ATTR webServerInit()
|
||
|
{
|
||
|
espFsInit(userPageCtx, (void *)getUserPageSectionStart(), ESPFS_FLASH);
|
||
|
if( espFsIsValid( userPageCtx ) ) {
|
||
|
os_printf("Valid user file system found!\n");
|
||
|
webServerBrowseFiles();
|
||
|
}
|
||
|
else
|
||
|
os_printf("No user file system found!\n");
|
||
|
}
|
||
|
|