#include <stdio.h>
static void
_print_cb(
const char *name,
const char *path,
void *data
EINA_UNUSED)
{
printf("file %s in %s\n", name, path);
}
int
{
const char *f_name;
{
printf("%s\n", f_name);
}
printf(
"%s if of type %d\n", f_info->
path, f_info->
type);
printf(
"%s if of type %d\n", f_info->
path, f_info->
type);
return 0;
}
EINA_API Eina_Iterator * eina_file_stat_ls(const char *dir)
Gets an iterator to list the content of a directory, with direct information.
Definition eina_file_posix.c:741
EINA_API Eina_Iterator * eina_file_direct_ls(const char *dir)
Gets an iterator to list the content of a directory, with direct information.
Definition eina_file_posix.c:681
EINA_API Eina_Iterator * eina_file_ls(const char *dir)
Gets an iterator to list the content of a directory.
Definition eina_file_posix.c:633
EINA_API Eina_Bool eina_file_dir_list(const char *dir, Eina_Bool recursive, Eina_File_Dir_List_Cb cb, void *data)
Lists all the files on the directory by calling the function for every file found.
Definition eina_file_posix.c:568
EINA_API void eina_iterator_free(Eina_Iterator *iterator)
Frees an iterator.
Definition eina_iterator.c:98
#define EINA_ITERATOR_FOREACH(itr, data)
Definition for the macro to iterate over all elements easily.
Definition eina_iterator.h:448
EINA_API int eina_shutdown(void)
Shuts down the Eina library.
Definition eina_main.c:379
EINA_API int eina_init(void)
Initializes the Eina library.
Definition eina_main.c:291
EINA_API void eina_stringshare_del(Eina_Stringshare *str)
Notes that the given string has lost an instance.
Definition eina_stringshare.c:533
#define EINA_FALSE
boolean value FALSE (numerical value 0)
Definition eina_types.h:533
#define EINA_UNUSED
Used to indicate that a function parameter is purposely unused.
Definition eina_types.h:339
The structure to store information of a path.
Definition eina_file.h:208
Eina_File_Type type
File type.
Definition eina_file.h:212
char path[EINA_PATH_MAX]
The path.
Definition eina_file.h:213
structure of an iterator
Definition eina_iterator.h:159