1MAIL::FOLDER::HASSUB(3x)Cone: COnsole Newsreader And EMAIL::FOLDER::HASSUB(3x)
2
3
4
6 mail::folder::hasSubFolders - Determine if the folder is capable of
7 storing other folders
8
10 #include <libmail/mail.H>
11
12 mail::folder *folder;
13
14 bool flag=folder->hasSubFolders(void);
15
17 Some folders contain messages. Other folders contain other folder
18 (subfolders). Some IMAP servers are capable of creating dual-purpose
19 folders that contain both messages and other subfolders. The
20 hasSubFolders indicates whether folder is capable of containing other
21 folders (subfolders).
22
24 A true result indicates that folder is capable of storing other
25 folders. It may not necessarily mean that folder actually contains any
26 folders, it might very well be an empty folder.
27
28 Applications should interpret a true result to mean that the
29 mail::folder::createSubFolder(3x) function may be used to create
30 subfolders.
31
33 mail::folder::hasMessages(3x).
34
35
36
37[FIXME: source] 05/08/2010 MAIL::FOLDER::HASSUB(3x)