The ClientStore Class contains the following fields.
LIST_FL_NO_DIRECTORIES | Indicates that list operations do not include directories. |
LIST_FL_NO_FILES | Indicates that list operations do not include files. |
LIST_FL_RECURSE | Indicates that list operations find files recursively. When used in conjunction with a filter, the directory will be recursed only if the filter returns true. |
OPEN_FL_APPEND | Indicates a type of accessibility for a file that is opened with the openWritable method. If the file already exists, it will be appended. If the file does not exist, a new file is opened for writing. |
OPEN_FL_EXPENDABLE | Indicates a type of accessibility for a file that is automatically deleted when the storage area is full, if deleting the file will help satisfy a request for opening a new file. |
OPEN_FL_SHARED | Indicates a type of accessibility for a file that is opened with the openWritable or the openReadable method. Opening the file with this accessibility type makes the file accessible to other principals co-signed or otherwise authorized by the owning principal. |
OPEN_FL_WRITABLE | Indicates a type of accessibility for a file that is opened with the openRandom method. The file is opened with write access. |
STORE_FL_LOCAL | Indicates a type of accessibility for a file that is manipulated by various other methods. If this type of accessibility is specified, the file must be found in a computer-specific local storage area. |
STORE_FL_ROAMING | Indicates a type of accessibility for a file that is opened with the openWritable or openReadable method. Opening a file with this accessibility type makes the file accessible to the user from any computer that the user logs on to. The file that is opened will be added to the user's profile. |