Efreet_Trash.h provides all of the necessary headers and includes to work with Efreet_Trash. More...
Functions | |
EAPI int | efreet_trash_init (void) |
Initializes the efreet trash system. More... | |
EAPI int | efreet_trash_shutdown (void) |
Cleans up the efreet trash system. More... | |
EAPI const char * | efreet_trash_dir_get (const char *for_file) |
Retrieves the XDG Trash local directory. More... | |
EAPI int | efreet_trash_delete_uri (Efreet_Uri *uri, int force_delete) |
This function try to move the given uri to the trash. Files on different filesystem can't be moved to trash. If force_delete is 0 than non-local files will be ignored and -1 is returned, if you set force_delete to 1 non-local files will be deleted without asking. More... | |
EAPI Eina_List * | efreet_trash_ls (void) |
List all the files and directory currently inside the trash. More... | |
EAPI int | efreet_trash_is_empty (void) |
Check if the trash is currently empty. More... | |
EAPI int | efreet_trash_empty_trash (void) |
Delete all the files inside the trash. More... | |
Efreet_Trash.h provides all of the necessary headers and includes to work with Efreet_Trash.
EAPI int efreet_trash_init | ( | void | ) |
Initializes the efreet trash system.
1
on success or 0
on failure. References EAPI, eina_init(), eina_log_domain_register(), EINA_LOG_ERR, and eina_shutdown().
EAPI int efreet_trash_shutdown | ( | void | ) |
Cleans up the efreet trash system.
References EAPI, eina_log_domain_unregister(), and eina_shutdown().
EAPI const char* efreet_trash_dir_get | ( | const char * | for_file | ) |
Retrieves the XDG Trash local directory.
NULL
on errors. Return value must be freed with eina_stringshare_del. References EAPI, ecore_file_exists(), ecore_file_mkpath(), efreet_data_home_get(), eina_stringshare_add(), eina_stringshare_del(), and eina_stringshare_ref().
Referenced by efreet_trash_delete_uri(), efreet_trash_empty_trash(), efreet_trash_is_empty(), and efreet_trash_ls().
EAPI int efreet_trash_delete_uri | ( | Efreet_Uri * | uri, |
int | force_delete | ||
) |
This function try to move the given uri to the trash. Files on different filesystem can't be moved to trash. If force_delete is 0
than non-local files will be ignored and -1
is returned, if you set force_delete to 1
non-local files will be deleted without asking.
uri | The local uri to move in the trash |
force_delete | If you set this to 1 than files on different filesystems will be deleted permanently |
1
on success, 0
on failure or -1
in case the uri is not on the same filesystem and force_delete is not set. References EAPI, ecore_file_can_write(), ecore_file_exists(), ecore_file_file_get(), ecore_file_recursive_rm(), efreet_trash_dir_get(), efreet_uri_encode(), eina_stringshare_del(), Efreet_Uri::path, and rename.
List all the files and directory currently inside the trash.
References ecore_file_ls(), efreet_trash_dir_get(), EINA_LIST_FOREACH, and EINA_LOG_LEVEL_INFO.
EAPI int efreet_trash_is_empty | ( | void | ) |
Check if the trash is currently empty.
1
if the trash is empty or 0
if some file are in. References EAPI, ecore_file_dir_is_empty(), and efreet_trash_dir_get().
EAPI int efreet_trash_empty_trash | ( | void | ) |
Delete all the files inside the trash.
1
on success or 0
on failure. References EAPI, ecore_file_mkdir(), ecore_file_recursive_rm(), and efreet_trash_dir_get().