Functions | |
LIBMTP_folder_t * | LIBMTP_new_folder_t (void) |
void | LIBMTP_destroy_folder_t (LIBMTP_folder_t *) |
LIBMTP_folder_t * | LIBMTP_Get_Folder_List (LIBMTP_mtpdevice_t *) |
LIBMTP_folder_t * | LIBMTP_Find_Folder (LIBMTP_folder_t *, uint32_t const) |
uint32_t | LIBMTP_Create_Folder (LIBMTP_mtpdevice_t *, char *, uint32_t) |
uint32_t LIBMTP_Create_Folder | ( | LIBMTP_mtpdevice_t * | device, | |
char * | name, | |||
uint32_t | parent_id | |||
) |
This create a folder on the current MTP device. The PTP name for a folder is "association". The PTP/MTP devices does not have an internal "folder" concept really, it contains a flat list of all files and some file are "associations" that other files and folders may refer to as its "parent".
device | a pointer to the device to create the folder on. | |
name | the name of the new folder. | |
parent_id | id of parent folder to add the new folder to, or 0 to put it in the root directory. |
void LIBMTP_destroy_folder_t | ( | LIBMTP_folder_t * | folder | ) |
This recursively deletes the memory for a folder structure
folder | folder structure to destroy |
LIBMTP_folder_t* LIBMTP_Find_Folder | ( | LIBMTP_folder_t * | folderlist, | |
uint32_t | id | |||
) |
Helper function. Returns a folder structure for a specified id.
folderlist | list of folders to search id of folder to look for |
LIBMTP_folder_t* LIBMTP_Get_Folder_List | ( | LIBMTP_mtpdevice_t * | device | ) |
This returns a list of all folders available on the current MTP device.
device | a pointer to the device to get the track listing for. |
LIBMTP_folder_t* LIBMTP_new_folder_t | ( | void | ) |
This creates a new folder structure and allocates memory for it. Notice that if you add strings to this structure they will be freed by the corresponding LIBMTP_folder_track_t
operation later, so be careful of using strdup() when assigning strings, e.g.: