class CMountCB : public CFsDispatchObject |
A file server interface class representing a mount.
An instance of this object is referred to as a mount control block.
A mount control block needs to be created for a specific volume (partition) on a drive in order to be able to access that volume. Volumes may be permanent or represent removable media. Note that removable media may also be mounted directly onto a device with no drive. Volumes can be formatted, unlike drives.
The volume represented is either a currently mounted volume in the system or, in the case of removable volumes, a volume that has been removed but still has subsession objects open.
A plug-in file system implements this class.
Protected Member Functions | |
---|---|
IMPORT_C CFileSystem * | FileSystem () |
IMPORT_C TInt | GetInterface ( TInt , TAny *&, TAny *) |
TInt | GetInterfaceTraced ( TInt , TAny *&, TAny *) |
TBool | IsDismounted () |
TInt | MountNumber () |
TBool | ProxyDriveDismounted () |
void | SetDismounted ( TBool ) |
void | SetMountNumber ( TInt ) |
void | SetProxyDriveDismounted () |
Private Member Functions | |
---|---|
CDirCB * | NewDirL () |
CFileCB * | NewFileL () |
CFormatCB * | NewFormatL () |
void | SetFileSystem ( CFileSystem *) |
Public Member Enumerations | |
---|---|
enum |
TInterfaceIds
{
EAddFsToCompositeMount = 0, EGetLocalDrive = 1, EFileAccessor = 2, EGetFileSystemSubType = 3, EGetClusterSize = 4, ELocalBufferSupport = 5, EAddToCompositeMount = 6, EGetProxyDrive = 7, EFileExtendedInterface = 8 } |
Protected Member Enumerations | |
---|---|
enum |
TMntCtlLevel
{
EMountStateQuery , EMountVolParamQuery , ECheckFsMountable , ESpecificMountCtl = 0x40000000, ESpecificFsCtl = 0x40001000, EMountFsParamQuery } |
enum |
TMntCtlOption
{
ESQ_IsMountFinalised , ESpecificMountCtlOpt = 0x40000000, ESQ_RequestFreeSpace , ESQ_GetCurrentFreeSpace , ESQ_MountedVolumeSize , ESpecificFsCtlOpt = 0x40001000, ESQ_GetMaxSupportedFileSize } |
Protected Attributes | |
---|---|
TInt | iMountNumber |
TDblQue < CFileCB > | iMountQ |
TInt64 | iSize |
TUint | iUniqueID |
Private Attributes | |
---|---|
CMountBody * | iBody |
TDrive * | iDrive |
TInt | iLockMount |
HBufC * | iVolumeName |
TInt | AddToCompositeMount | ( | TInt | aMountIndex | ) | [inline] |
TInt aMountIndex |
TInt | CheckDisk | ( | ) | [inline, virtual] |
Checks the integrity of the file system on the volume and returns an appropriate error value. The default implementation must be overridden by a derived class.
TInt | CheckDisk | ( | TInt | aOperation, |
TAny * | aParam1 = NULL, | |||
TAny * | aParam2 = NULL | |||
) | [inline, virtual] |
The same as original CheckDisk() , but with some parameters.
TInt | CheckFileSystemMountable | ( | ) | [inline] |
Check is this file system can be mounted on the drive at all. The file system implementation may, for example, read and validate the boot region without real mounting overhead.
TInt | ClampFile | ( | const TInt | aDriveNo, |
const TDesC & | aName, | |||
TAny * | aHandle | |||
) |
TInt | ClearPassword | ( | TMediaPassword & | ) | [inline, virtual] |
Clears a password from a media that supports write protection.
The default implementation must be overridden in a derived class.
TMediaPassword & |
TInt | ControlIO | ( | const RMessagePtr2 & | , |
TInt | , | |||
TAny * | , | |||
TAny * | ||||
) | [inline, virtual] |
Low-level control IO
const RMessagePtr2 & | |
TInt | |
TAny * | |
TAny * |
void | DecLock | ( | ) | [inline] |
Unlocks the mount by decrementing the internal lock counter.
The mount becomes locked on formatting or on the opening of a resource (a file or a directory) or raw disk subsession. A format, resource or raw disk subsession can only be opened if the mount is not locked.
void | DeleteL | ( | const TDesC & | aName | ) | [pure virtual] |
Deletes the specified file from the mount.
The function can assume that the file is closed.
\\dirA\\dirB\\dirC\\file.ext
The extension is optional.
The function should leave on error detection, with an appropriate error code.
const TDesC & aName | A reference to a descriptor containing the full path name of the file that will be removed. |
void | DirOpenL | ( | const TDesC & | aName, |
CDirCB * | aDir | |||
) | [pure virtual] |
Customises the opening of a directory on the mount.
The function is called internally, and the directory will have been created and initialised by the calling function. Any customisation specific to a file system should be implemented in this function.
\\dirA\\dirB\\dirC\\file.ext
where \dirA\dirB\dirC\ is the directory to be opened and file.ext is an optional entry name and extension.
After successful completion of the function, the directory control block pointer will be added to the file server global directories container.
The function should leave with a suitable error code if it cannot complete successfully for any reason.
void | Dismounted | ( | ) | [pure virtual] |
Carries out any clean-up necessary for a volume dismount.
Dismounting a volume will always succeed, so the function does not need to return an error value. Any cached information should be discarded and no attempt should be made to access the volume. For removable media it may be that the media has already been removed. This function is called when a media change is detected.
TDrive & | Drive | ( | ) | const [inline] |
Gets a reference to the object representing the drive on which the volume is mounted.
void | EntryL | ( | const TDesC & | aName, |
TEntry & | anEntry | |||
) | const [pure virtual] |
Gets the entry details for the specified file or directory.
\\dirA\\dirB\\dirC\\entry.
Note that anEntry.iType (the entry UID) should only be set for a file whose size is greater than or equal to sizeof(TCheckedUid).
The function should leave with an appropriate error code if it cannot complete successfully for any reason.
TInt | ErasePassword | ( | ) | [inline, virtual] |
Erase a password from a media that supports write protection.
The default implementation must be overridden in a derived class.
void | FileOpenL | ( | const TDesC & | aName, |
TUint | aMode, | |||
TFileOpen | anOpen, | |||
CFileCB * | aFile | |||
) | [pure virtual] |
Customises the opening of a new or existing file on the mount.
The function is called internally (via TDrive::FileOpen() ) as a result of a call by the client, and the file is created, if necessary, and opened by the calling function. However this function implements any replacement functionality, as well as any other behaviour particular to the file system.
If anOpen specifies EFileReplace (rather than EFileCreate or EFileOpen) then, if replacement functionality is required, the data contained in the file should be discarded, the archive attribute should be set, and the size of the file should be set to zero. Note that it can be assumed that if anOpen specifies EFileReplace then the file already exists.
After successful completion of the function, the file control block pointer will be added to the file server's global files container.
The function should leave with a suitable error code if it cannot be completed successfully.
const TDesC & aName | The full name of the file that will be opened. |
TUint aMode | The file share mode. The following share modes are available: EFileShareExclusive; EFileShareReadersOnly; EFileShareAny; EFileShareReadersOrWriters; EFileStream; EFileStreamText; EFileRead; EFileWrite. |
TFileOpen anOpen | IndicatES how the file will be opened. It can be one of the following: EFileOpen; EFileCreate; EFileReplace. |
CFileCB * aFile | Pointer to the file control block which will, on success, represent the open file. |
void | FinaliseMountL | ( | ) | [inline, virtual] |
Legacy method: finalise the mount and put it to the consistent state.
void | FinaliseMountL | ( | TInt | aOperation, |
TAny * | aParam1 = NULL, | |||
TAny * | aParam2 = NULL | |||
) | [inline, virtual] |
finalise the mount and put it to the consistent state.
TInt | ForceRemountDrive | ( | const TDesC8 * | , |
TInt | , | |||
TUint | ||||
) | [inline, virtual] |
TInt | GetCurrentFreeSpaceAvailable | ( | TInt64 & | aFreeSpaceBytes | ) | [inline] |
Corresponds to EMountVolParamQuery. A request to obtain the _current_ amount of free space on the volume asynchronously, without blocking. Some mounts implementations can count volume free space in the background.
TInt64 & aFreeSpaceBytes | in: none; out: _current_ amount of free space on the volume. |
TInt | GetFileUniqueId | ( | const TDesC & | aName, |
TInt64 & | aUniqueId | |||
) |
IMPORT_C TInt | GetInterface | ( | TInt | aInterfaceId, |
TAny *& | aInterface, | |||
TAny * | aInput | |||
) | [protected, virtual] |
Return a pointer to a specified interface extension - to allow future extension of this class without breaking binary compatibility.
TInt | GetInterfaceTraced | ( | TInt | aInterfaceId, |
TAny *& | aInterface, | |||
TAny * | aInput | |||
) | [protected] |
void | GetLongNameL | ( | const TDesC & | aShorName, |
TDes & | aLongName | |||
) | [pure virtual] |
Gets the long name of the file or directory associated with the given short name.
This function is used in circumstances where a file system mangles Symbian OS natural names in order to be able to store them on a file system that is not entirely compatible.
The function should leave with a suitable error code if it cannot complete successfully for any reason.
TInt | GetMaxSupportedFileSize | ( | TUint64 & | aSize | ) | [inline] |
Get Maximum file size, which is supported by the file system that has produced this mount.
TUint64 & aSize |
TBool | GetNotifyUser | ( | ) | const [inline] |
Tests whether the client is notified of any read or write failures.
The notification status is a property of the current session with the file server, the value of which is stored in CSessionFs::iNotifyUser. If set to true, the client will receive notifications from the file system.
Typically, this function might be used to save the current notification state prior to temporarily disabling notifiers. This allows the original notification state to be restored.
Note that GetNotifyUser() is only available once the drive has been set for the mount control block (using SetDrive() ), since the notification status is held by the session and accessed via the drive.
void | GetShortNameL | ( | const TDesC & | aLongName, |
TDes & | aShortName | |||
) | [pure virtual] |
Gets the short name of the file or directory with the given full name.
This function is used in circumstances where a file system mangles Symbian OS natural names, in order to be able to store them on a file system that is not entirely compatible.
The function should leave with a suitable error code if it cannot complete successfully for any reason.
void | IncLock | ( | ) | [inline] |
Locks the mount by incrementing the internal lock counter.
The mount becomes locked on formatting or on the opening of a resource (a file or a directory) or raw disk subsession. A format, resource or raw disk subsession can only be opened if the mount is not locked.
IMPORT_C void | InitL | ( | TDrive & | aDrive, |
CFileSystem * | apFileSystem | |||
) |
TDrive & aDrive | |
CFileSystem * apFileSystem |
TBool | IsCurrentMount | ( | ) | const [inline] |
Tests whether the mount control block represents the current mount on the associated drive.
A drive has only one mount which is accessible: the current mount. Any mount other than the current mount relates to a partition (i.e. volume) that was present on a removable media which has since been removed. The reason the mount has persisted is because resources (i.e. files/directories) are still open on it.
This function is only available when the drive has been set for the mount control block (using SetDrive() ), since the current mount is held by the drive.
TBool | IsDismounted | ( | ) | const [protected, inline] |
Returns ETrue if the mount is flagged as dismounted.
IMPORT_C TInt | IsFileClamped | ( | const TInt64 | aUniqueId | ) |
const TInt64 aUniqueId |
IMPORT_C void | IsFileInRom | ( | const TDesC & | aFileName, |
TUint8 *& | aFileStart | |||
) | [virtual] |
TInt | IsMountFinalised | ( | TBool & | aFinalised | ) | [inline] |
Query if the mount is finalised, corresponds to the EMountStateQuery control code only.
TBool & aFinalised | out: ETrue if the mount is finalised, EFalse otherwise. |
TInt | LocalBufferSupport | ( | CFileCB * | aFile = NULL | ) | [inline] |
Returns whether the mount (and any extensions) support file caching
CFileCB * aFile = NULL |
TInt | LocalDrive | ( | TBusLocalDrive *& | aLocalDrive | ) | [inline] |
Retrieves TBusLocalDrive object associated with the mount
TBusLocalDrive *& aLocalDrive |
TInt | Lock | ( | TMediaPassword & | , |
TMediaPassword & | , | |||
TBool | ||||
) | [inline, virtual] |
Locks a media which supports password protection and replaces the old password with a new one.
If aStore is set to ETrue, then the new password should be saved to the password store file, KMediaPWrdFile, using the exported file server function WriteToDisk() .
The password file is used to initialise the password store on boot up, so the user does not need to be prompted for the password again if it is saved here.
The default implementation must be overridden in a derived class.
TMediaPassword & | |
TMediaPassword & | |
TBool |
TInt | LockStatus | ( | ) | const [inline] |
Gets the current lock status.
It delivers the current lock status by returning the internal lock counter.
TBool | Locked | ( | ) | const [inline] |
Tests whether the mount is currently locked.
A mount is locked when the internal lock counter is greater than zero. On creation, the lock counter is set to zero.
The mount becomes locked on formatting or on the opening of a resource (a file or a directory) or raw disk subsession. A format, resource or raw disk subsession can only be opened if the mount is not locked.
void | MkDirL | ( | const TDesC & | aName | ) | [pure virtual] |
Creates a new directory on the mount.
\\dirA\\dirB\\dirC\\dirDwhere dirD is the new directory to be created in \dirA\dirB\dirC\. This means that dirC is the leaf directory in which dirD will be created.
The function should leave, on error detection, with an appropriate error code.
const TDesC & aName | A reference to a descriptor containing the full name of the directory to be created. |
TInt | MountControl | ( | TInt | aLevel, |
TInt | aOption, | |||
TAny * | aParam | |||
) | [inline, virtual] |
Generic mount control method.
void | MountL | ( | TBool | aForceMount | ) | [pure virtual] |
Attempts to set the mount control block properties using the current mount (i.e. volume) on the associated drive.
The function should set the volume name (iVolumeName), the unique ID (iUniqueID) and the volume size (iSize) by reading and processing the current mount.
When aForceMount is set to ETrue, the properties of a corrupt volume should be forcibly stored. The classic case of when this is desirable is when a corrupt volume needs to be formatted.
The function should leave, on error detection, with an appropriate error code.
TBool aForceMount | Indicates whether the properties of a corrupt volume should be stored. |
TInt | MountedVolumeSize | ( | TUint64 & | aVolSizeBytes | ) | [inline] |
Corresponds to EMountVolParamQuery. A request to obtain size of the mounted volume without blocking ( CMountCB::VolumeL() can block).
TUint64 & aVolSizeBytes | in: none; out: mounted volume size, same as TVolumeInfo::iSize |
TInt | ProxyDrive | ( | CProxyDrive *& | aProxyDrive | ) | [inline] |
Retrieves CProxyDrive object associated with the mount
CProxyDrive *& aProxyDrive |
void | RawReadL | ( | TInt64 | aPos, |
TInt | aLength, | |||
const TAny * | aTrg, | |||
TInt | anOffset, | |||
const RMessagePtr2 & | aMessage | |||
) | const [pure virtual] |
Reads the specified length of data from the specified position on the volume directly into the client thread.
It can be assumed that if this function is called, then there has been a successful mount.
This function should leave with an appropriate error code when an error is detected.
TInt64 aPos | Start position in the volume for the read operation, in bytes. |
TInt aLength | The number of bytes to be read. |
const TAny * aTrg | A pointer to the buffer into which data is to be read. |
TInt anOffset | The offset at which to start adding data to the read buffer. |
const RMessagePtr2 & aMessage |
void | RawWriteL | ( | TInt64 | aPos, |
TInt | aLength, | |||
const TAny * | aSrc, | |||
TInt | anOffset, | |||
const RMessagePtr2 & | aMessage | |||
) | [pure virtual] |
Writes a specified length of data from the client thread to the volume at the specified position.
It can be assumed that if this function is called, then there has been a successful mount.
This function should leave with an appropriate error code when an error is detected.
TInt64 aPos | Start position in the volume for the write operation, in bytes. |
TInt aLength | The number of bytes to be written. |
const TAny * aSrc | Pointer to the buffer from which data will be written. |
TInt anOffset | The offset in the buffer at which to start writing data. |
const RMessagePtr2 & aMessage |
TInt | ReMount | ( | ) | [pure virtual] |
Checks whether the mount control block represents the current mount on the associated drive.
The function should read mount information from the current volume, and check it against the mount information from this mount - typically iVolumeName and iUniqueID. If the mount information matches, the function should return KErrNone, otherwise it should return KErrGeneral.
Called by the associated TDrive object when the drive has no current mounts, which is the case on first access to the drive and following a volume change on a drive associated with removable media. In this circumstance, this function is called systematically on every mount control block owned by the drive. If ReMount() calls for all existing mount control blocks fail, the drive creates a new mount control block and calls CMountCB::MountL() on that object; the new object is added to the list of mount control blocks owned by the drive.
void | ReadSection64L | ( | const TDesC & | aName, |
TInt64 | aPos, | |||
TAny * | aTrg, | |||
TInt | aLength, | |||
const RMessagePtr2 & | aMessage | |||
) |
const TDesC & aName | |
TInt64 aPos | |
TAny * aTrg | |
TInt aLength | |
const RMessagePtr2 & aMessage |
void | ReadSectionL | ( | const TDesC & | aName, |
TInt | aPos, | |||
TAny * | aTrg, | |||
TInt | aLength, | |||
const RMessagePtr2 & | aMessage | |||
) | [pure virtual] |
Reads a specified section of the file, regardless of the file's lock state.
The function should leave with a suitable error code if it cannot complete successfully for any reason.
const TDesC & aName | A reference to a descriptor containing the full name of the file to be read from |
TInt aPos | The byte position to start reading from. |
TAny * aTrg | A pointer to the buffer into which data is to be read. |
TInt aLength | The length of data to be read, in bytes. |
const RMessagePtr2 & aMessage |
void | RenameL | ( | const TDesC & | anOldName, |
const TDesC & | anNewName | |||
) | [pure virtual] |
Renames or moves a single file or directory on the mount.
\\dirA\\dirB\\dirC\\oldEntryName
and
\\dirE\\dirF\\dirG\\newEntryName
If oldEntryName is a file, it can be assumed that it is closed. If oldEntryName is a directory, it can be assumed that there are no open files in this directory. Furthermore, if newEntryName specifies a directory, it can be assumed that it is not a subdirectory of oldEntryName.
The function should leave with an appropriate error code if it cannot complete successfully for any reason.
void | ReplaceL | ( | const TDesC & | anOldName, |
const TDesC & | anNewName | |||
) | [pure virtual] |
Replaces one file on the mount with another.
The function can assume that both anOldName and, if it exists, anNewName contain the full file names of files, and that these files are not open.
If the file aNewName does not exist it should be created.
The file anOldName should have its contents, attributes, and the universal date and time of its last modification, copied to the file aNewName, overwriting any existing contents and attribute details. Finally anOldName should be deleted.
The function should leave with an appropriate error code if it cannot complete successfully for any reason.
TInt | RequestFreeSpace | ( | TUint64 & | aFreeSpaceBytes | ) | [inline] |
Corresponds to EMountVolParamQuery. Request a certain amount of free space on the volume. If _current_ amount of free space is >= than required or it is not being updated in background by the mount, returns immediately; If mount is still counting free space and If _current_ amount of free space is < than required, the caller will be blocked until mount finds enough free space or reports that the _final_ amount of free space is less than required.
TUint64 & aFreeSpaceBytes | in: number of free bytes on the volume required, out: resulted amount of free space. It can be less than required if there isn't enough free space on the volume at all. |
void | RmDirL | ( | const TDesC & | aName | ) | [pure virtual] |
Removes the directory specified by aName (its full name) from the volume.
\\dirA\\dirB\\dirC\\dirDwhere dirD is the directory to be removed from \dirA\dirB\dirC\. This means that dirC is the leaf directory from which dirD should be removed.
The function can assume that the directory exists and is not read-only.
The function should leave with a suitable error code if it cannot complete successfully for any reason.
const TDesC & aName | A reference to a descriptor containing the full name of the directory to be removed. |
TInt | ScanDrive | ( | ) | [inline, virtual] |
Scans through and corrects errors found in the volume.
The default implementation must be overridden by a derived class.
TInt | ScanDrive | ( | TInt | aOperation, |
TAny * | aParam1 = NULL, | |||
TAny * | aParam2 = NULL | |||
) | [inline, virtual] |
The same as original ScanDrive() , but with some parameters.
IMPORT_C void | SetDiskSpaceChange | ( | TInt64 | aFreeDiskSpace | ) |
TInt64 aFreeDiskSpace |
void | SetDismounted | ( | TBool | aDismounted = ETrue | ) | [protected, inline] |
Set the mount to be dismounted
TBool aDismounted = ETrue |
void | SetDrive | ( | TDrive * | aDrive | ) | [inline] |
Sets a pointer to the object representing the drive on which the volume is mounted.
TDrive * aDrive | A pointer to the drive on which the volume is mounted. |
void | SetEntryL | ( | const TDesC & | aName, |
const TTime & | aTime, | |||
TUint | aSetAttMask, | |||
TUint | aClearAttMask | |||
) | [pure virtual] |
Sets entry details for a specified file or directory.
The entry identfied by the full name descriptor aName should have its modification time and its attributes mask updated as required.
The entry receives a new universal modified time from aTime. The entry attributes are set with aSetAttMask and cleared with aClearAttMask: the bits that are set in aSetAttMask should be set in the entry attribute mask; the bits that are set in aClearAttMask should be cleared from the entry attribute mask.
The function can assume that aSetAttMask and aClearAttMask do not change the type of attribute (i.e. volume or directory). Furthermore, if aName specifies a file, it can be assumed that this file is closed.
The function should leave with an appropriate error code on error detection.
const TDesC & aName | A reference to a descriptor containing the full name of the entry to be updated. |
const TTime & aTime | A reference to the time object holding the new universal modified time for aName. |
TUint aSetAttMask | Attribute mask for setting the entry's attributes. |
TUint aClearAttMask | Attribute mask for clearing the entry's attributes. |
void | SetFileSystem | ( | CFileSystem * | aFS | ) | [private] |
CFileSystem * aFS |
void | SetMountNumber | ( | TInt | aMountNumber | ) | [protected, inline] |
TInt aMountNumber |
void | SetVolumeL | ( | TDes & | aName | ) | [pure virtual] |
Sets the volume name for the mount, thus writing the new volume name to the corresponding volume.
This function should leave on error detection.
TDes & aName | A reference to a descriptor containing the new volume name. |
void | SetVolumeName | ( | HBufC * | aName | ) | [inline] |
Sets a pointer to a heap descriptor containing the name of the mounted volume.
HBufC * aName | A pointer to a heap descriptor containing the name of the mounted volume to be set. |
TInt | Unlock | ( | TMediaPassword & | , |
TBool | ||||
) | [inline, virtual] |
Unlocks a media which supports password protection.
If aStore is set to ETrue then the password should be saved to the password store file specified by KMediaPWrdFile using the exported file server function WriteToDisk() .
The password file is used to initialise the password store on boot up, so the user does not need to be prompted for the password again if it is saved here.
The default implementation must be overridden in a derived class.
TMediaPassword & | |
TBool |
void | VolumeL | ( | TVolumeInfo & | aVolume | ) | const [pure virtual] |
Gets volume information.
The only information that the function has to supply is the free space, TVolumeInfo::iFree , since the remaining members have already been set by the calling function.
The function should leave, on error detection, with an appropriate error code.
TVolumeInfo & aVolume | On return, a reference to the filled volume information object. |
HBufC & | VolumeName | ( | ) | const [inline] |
Gets a reference to a heap descriptor containing the name of the mounted volume.
IMPORT_C TBool | operator!= | ( | const CMountCB & | aMount | ) | const |
const CMountCB & aMount |
Enumeration of the aInterfaceIDs used in GetInterface.
EAddFsToCompositeMount = 0 | |
EGetLocalDrive = 1 | |
EFileAccessor = 2 | |
EGetFileSystemSubType = 3 | |
EGetClusterSize = 4 | |
ELocalBufferSupport = 5 | |
EAddToCompositeMount = 6 | |
EGetProxyDrive = 7 | |
EFileExtendedInterface = 8 |
Mount Control levels or operations to perform
EMountStateQuery | |
EMountVolParamQuery | |
ECheckFsMountable | |
ESpecificMountCtl = 0x40000000 | |
ESpecificFsCtl = 0x40001000 | |
EMountFsParamQuery |
Mount Control options that makes sense only for certain control codes, see TMntCtlLevel
ESQ_IsMountFinalised |
query if the mount is finalised, corresponds to the EMountStateQuery control code only. IsMountFinalised() |
ESpecificMountCtlOpt = 0x40000000 | |
ESQ_RequestFreeSpace |
Corresponds to EMountVolParamQuery. Request a certain amount of free space on the volume. RequestFreeSpace() |
ESQ_GetCurrentFreeSpace |
Corresponds to EMountVolParamQuery. A request to obtain the _current_ amount of free space on the volume asynchronously, without blocking. |
ESQ_MountedVolumeSize |
Corresponds to EMountVolParamQuery. A request to obtain size of the mounted volume without blocking ( CMountCB::VolumeL() can block). |
ESpecificFsCtlOpt = 0x40001000 | |
ESQ_GetMaxSupportedFileSize |
Get Maximum file size, which is supported by the file system that has produced this mount. |
TDblQue < CFileCB > | iMountQ | [protected] |
A list of all open files on that mount. Set by the TDrive object representing the drive of which the mount resides.
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.