CBFS Component

Properties   Methods   Events   Config Settings   Errors  

The CBFS component gives applications the ability to create a virtual filesystem.

Syntax

cbfsconnect.CBFS

Remarks

The CBFS component is used to create a virtual filesystem whose contents are stored and exposed in an application-defined manner. The CBFS component's unique and powerful event-based design gives applications the flexibility needed to support a wide range of use cases, ranging from something as simple as translating filesystem calls to files and directories on another storage medium, to something as complex as generating the entire contents of the virtual filesystem on the fly based on some application-specific data source.

Getting Started

Each CBFS component instance controls a single virtual filesystem, and therefore a single virtual drive. Applications can use multiple instances of the CBFS component if their use case requires the creation of multiple virtual drives; the component's Tag property can be used to distinguish between instances during event handlers.

Here's how to get up and running:

  1. If the system driver has not been installed yet, call the Install method to do so. This needs to be done only once.
    • In production, the system driver can be installed (or updated) ahead of time by the application's installation script using the Installer DLL. Please refer to the Driver Installation topic for more information.
  2. Call the Initialize method to initialize the CBFS component. This must be done each time the application starts (if the application is using multiple CBFS component instances, only the first instance created should be used to call Initialize).
  3. Ensure that all of the necessary event handlers have been implemented. Some event handlers, such as OpenFile, ReadFile, GetFileInfo, and EnumerateDirectory are mandatory and must be implemented by all applications (this is not an exhaustive list). Others are optional, and only need to be implemented when certain features are enabled. Please refer to the event's documentation for more information.
  4. Create a virtual drive by calling the CreateStorage method.
  5. Call the MountMedia method to "insert storage media" into the virtual drive. (This "media" can be changed at any time later using the UnmountMedia and MountMedia methods.)
  6. Create one or more Mounting Points for the virtual drive using the AddMountingPoint method. A mounting point can be a drive letter, a UNC path, or a directory on an existing NTFS-formatted drive.
  7. Later, the application can unmount the "media" from the virtual drive using the UnmountMedia method. At this point, the application could call the MountMedia method again to "insert different storage media".
  8. To delete the virtual drive entirely, call the DeleteStorage method.
  9. To uninstall the system driver, call the Uninstall method. This should not be done as part of the driver upgrade process.
    • In production, the system driver can be uninstalled by the application's uninstallation script using the Installer DLL. Please refer to the Driver Installation topic for more information.

Property List


The following is the full list of the properties of the component with short descriptions. Click on the links for further details.

AccessDeniedProcessCountThe number of records in the AccessDeniedProcess arrays.
AccessDeniedProcessDesiredAccessThe kind of access granted or denied.
AccessDeniedProcessIncludeChildrenWhether child processes are affected.
AccessDeniedProcessIdThe Id of the target process.
AccessDeniedProcessNameThe filename of the target process's executable.
AccessGrantedProcessCountThe number of records in the AccessGrantedProcess arrays.
AccessGrantedProcessDesiredAccessThe kind of access granted or denied.
AccessGrantedProcessIncludeChildrenWhether child processes are affected.
AccessGrantedProcessIdThe Id of the target process.
AccessGrantedProcessNameThe filename of the target process's executable.
ActiveThis property specifies whether the component is active and handling OS requests.
FileCacheThis property specifies which file data cache implementation to use.
FileSystemNameThe name of the virtual filesystem.
FireAllOpenCloseEventsThis property specifies whether to fire events for all file open/close operations, or just the first and last.
HandleAllFsctlsThis property specifies whether or not to fire the Fsctl event for all FSCTL_* requests.
MaxFileNameLengthThis property includes the maximum filename length supported by the virtual filesystem.
MaxFilePathLengthThis property includes the maximum file path length supported by the virtual filesystem.
MaxFileSizeThis property includes the maximum file size supported by the virtual filesystem.
MetadataCacheEnabledThis property specifies whether or not the metadata cache should be used.
MetadataCacheSizeThis property includes the size of the metadata cache.
MountingPointCountThe number of records in the MountingPoint arrays.
MountingPointAuthenticationIdThe Authentication ID used when creating the mounting point, if applicable.
MountingPointFlagsThe flags used to create the mounting point.
MountingPointNameThe mounting point name.
NonExistentFilesCacheEnabledThis property specifies whether or not the nonexistent files cache should be used.
NonExistentFilesCacheSizeThis property includes the size of the nonexistent files cache.
OpenFilesCountThe number of records in the OpenFile arrays.
OpenFileHandleClosedThis property reflects whether the handle to the file has been closed.
OpenFileNameThis property reflects the name of the open file.
OpenFileProcessIdThis property reflects the Id of the process that opened the file.
OpenFileProcessNameThis property reflects the name of the process that opened the file.
OpenHandlesCountThis property includes the number of handles to filesystem objects in the virtual drive that are currently open.
OpenObjectsCountThis property includes the number of filesystem objects in the virtual drive that are currently open.
ProcessRestrictionsEnabledWhether process access restrictions are enabled.
SerializeAccessThis property specifies whether nonintersecting operations against the same file should execute serially or in parallel.
SerializeEventsWhether events should be fired on a single worker thread, or many.
StorageCharacteristicsThe characteristic flags to create the virtual drive with (Windows only).
StorageGUIDThe GUID to create the virtual drive with.
StoragePresentThis property specifies whether a virtual drive has been created.
StorageTypeThe type of virtual drive to create (Windows only).
SupportChangeTimeAttributeThis property specifies whether the virtual filesystem supports the ChangeTime file attribute.
SupportCompressedAttributeThis property specifies whether the virtual filesystem supports the Compressed file attribute.
SupportLastAccessTimeAttributeThis property specifies whether the virtual filesystem supports the LastAccessTime file attribute.
SupportODXReadWriteThis property specifies whether the virtual filesystem supports ODX (Offloaded Data Transfer) operations.
TagThis property stores application-defined data specific to a particular instance of the component.
UseAlternateDataStreamsThis property specifies whether or not the virtual filesystem supports alternate data streams.
UseCaseSensitiveFileNamesThis property specifies whether the virtual filesystem is case-sensitive or just case-preserving.
UseDirectoryEmptyCheckThis property specifies whether the IsDirectoryEmpty event should be used.
UseDiskQuotasThis property specifies whether the virtual filesystem supports disk quotas.
UseFileIdsThis property specifies whether the virtual filesystem supports file Ids.
UseHardLinksThis property specifies whether the virtual filesystem supports hard links.
UseObjectIdsThis property specifies whether the virtual filesystem supports a volume object Id.
UseReparsePointsThis property specifies whether the virtual filesystem supports reparse points.
UseShortFileNamesThis property specifies whether the virtual filesystem supports short (8.3) filenames.
UseWindowsSecurityThis property specifies whether the virtual filesystem supports Windows' ACL-based security mechanisms.

Method List


The following is the full list of the methods of the component with short descriptions. Click on the links for further details.

AddDeniedProcessAdds a rule that prevents a process from accessing the virtual drive.
AddGrantedProcessAdds a rule that allows a process to access the virtual drive.
AddMountingPointAdds a mounting point for the virtual drive.
CloseOpenedFilesSnapshotCloses the previously-created opened files snapshot.
ConfigSets or retrieves a configuration setting.
CreateOpenedFilesSnapshotCreates a snapshot of information about files that are currently open.
CreateStorageThis method creates the virtual drive.
DeleteStorageThis method deletes the virtual drive.
DisableRouteCacheThis method disables the automatic routing of requests to local files.
DispatchEventsReserved, do not use.
EnableRouteCacheThis method enables the automatic routing of requests to local files.
FileMatchesMaskThis method checks whether a particular file or directory name matches the specified mask.
GetDriverStatusRetrieves the status of the system driver.
GetEventFilenameThis method retrieves the name of the file or directory, to which the event applies.
GetHandleCreatorProcessIdThis method retrieves the Id of the process (PID) that opened the specified file handle.
GetHandleCreatorProcessNameThis method retrieves the name of the process that opened the specified file handle.
GetHandleCreatorThreadIdThis method retrieves the Id of the thread that opened the specified file handle.
GetHandleCreatorTokenThis method retrieves the security token associated with the process that opened the specified file handle.
GetModuleVersionRetrieves the version of a given product module.
GetOriginatorProcessIdRetrieves the Id of the process (PID) that initiated the operation.
GetOriginatorProcessNameRetrieves the name of the process that initiated the operation.
GetOriginatorThreadIdRetrieves the Id of the thread that initiated the operation (Windows only).
GetOriginatorTokenRetrieves the security token associated with the process that initiated the operation (Windows only).
InitializeThis method initializes the component.
InstallInstalls (or upgrades) the product's system drivers and/or the helper DLL (Windows only).
IsCBFSVolumeThis method checks whether the specified volume is powered by CBFS.
IsIconRegisteredChecks whether the specified icon is registered (Windows only).
MountMediaThis method mounts media in the virtual drive, making it accessible for reading and writing.
NotifyDirectoryChangeThis method notifies the OS that a file or directory has changed.
RegisterIconRegisters an icon that can be displayed as an overlay on the virtual drive in Windows Explorer (Windows only).
ReleaseUnusedFilesThis method instructs the OS to release any files kept open by the cache manager.
RemoveDeniedProcessRemoves a rule that prevents a process from accessing the virtual drive.
RemoveGrantedProcessRemoves a rule that allows a process to access the virtual drive.
RemoveMountingPointRemoves a mounting point for the virtual drive.
ResetIconResets the virtual drive's icon back to default by deselecting the active overlay icon (Windows only).
ResetTimeoutThis method resets the timeout duration for the current event handler.
RouteToFileThis method instructs the component to route future requests directly to a given file.
SetIconSelects a registered overlay icon for display on the virtual drive in Windows Explorer (Windows only).
ShutdownSystemShuts down or reboots the operating system.
UninstallUninstalls the product's system drivers and/or helper DLL (Windows only).
UnmountMediaThis method unmounts media from the virtual drive.
UnregisterIconUnregisters an existing overlay icon (Windows only).

Event List


The following is the full list of the events fired by the component with short descriptions. Click on the links for further details.

CanFileBeDeletedThis event fires when the driver needs to know whether a file or directory can be deleted.
CleanupFileThis event fires when the OS needs to clean up a file.
CloseDirectoryEnumerationThis event fires when the OS is finished enumerating a directory's contents.
CloseFileThis event fires when the OS needs to close a file.
CloseHardLinksEnumerationThis event fires when the OS is finished enumerating a file's hard links.
CloseNamedStreamsEnumerationThis event fires when the OS is finished enumerating a file's named streams.
CloseQuotasEnumerationThis event fires when the OS is finished reading or updating quota information.
CreateFileThis event fires when the OS wants to create a file or directory.
CreateHardLinkThis event fires when the OS wants to create a new hard link to an existing file.
DeleteFileThis event fires when the OS needs to delete a file or directory.
DeleteReparsePointThis event fires when the OS wants to delete a reparse point from a file or directory.
EjectedFires when the media and virtual drive have been ejected (Windows only).
EnumerateDirectoryThis event fires when the OS wants to enumerate a directory's contents.
EnumerateHardLinksThis event fires when the OS needs to enumerate a file's hard links.
EnumerateNamedStreamsThis event fires when the OS needs to enumerate a file's named streams.
ErrorThis event fires if an unhandled error occurs during an event.
FlushFileThis event fires when the OS needs to flush an open file's data out to storage.
FsctlThis event fires when the virtual filesystem receives a nonstandard request (filesystem control code).
GetDefaultQuotaInfoThis event fires when the OS needs the virtual drive's default quota information.
GetFileInfoThis event fires when the OS needs information about a file or directory.
GetFileNameByFileIdThis event fires when the component needs to translate a file Id to a file or directory path.
GetFileSecurityThis event fires when the OS needs to read the Windows security attributes of a file or directory.
GetReparsePointThis event fires when the OS wants to read a reparse point for a file or directory.
GetVolumeIdThis event fires when the component needs the volume Id.
GetVolumeLabelThis event fires when the OS needs the volume label.
GetVolumeObjectIdThis event fires when the OS needs the volume object Id and extended information.
GetVolumeSizeThis event fires when the OS needs information about the virtual drive's capacity and free space.
IoctlThis event fires when the disk behind the virtual filesystem receives a nonstandard request (I/O control code).
IsDirectoryEmptyThis event fires when the OS needs to know whether a directory is empty.
LockFileThis event fires when the OS needs to lock a range of bytes in a file.
MountThis event fires after the component mounts media into the virtual drive, making it available.
OffloadReadFileThis event fires when the OS wants the virtual filesystem to perform an offloaded data transfer (ODX) read operation.
OffloadWriteFileThis event fires when the OS wants the virtual filesystem to perform an offloaded data transfer (ODX) write operation.
OpenFileThis event fires when the OS wants to open a file or directory.
QueryQuotasThis event fires when the OS needs to read quota information.
ReadFileThis event fires when the OS needs to read data from an open file.
RenameOrMoveFileThis event fires when the OS wants to rename or move a file or directory within the virtual filesystem.
SetAllocationSizeThis event fires when the OS needs to set a file's allocation size.
SetDefaultQuotaInfoThis event fires when the OS needs to set the virtual drive's default quota information.
SetFileAttributesThis event fires when the OS needs to change the attributes of an open file or directory.
SetFileSecurityThis event fires when the OS wants to change the Windows security attributes of a file or directory.
SetFileSizeThis event fires when the OS needs to change the size of an open file.
SetQuotasThis event fires when the OS needs to update quota information.
SetReparsePointThis event fires when the OS wants to create or update a reparse point on a file or directory.
SetValidDataLengthThis event fires when the OS needs to set a file's valid data length.
SetVolumeLabelThis event fires when the OS wants to change the volume label.
SetVolumeObjectIdThis event fires when the OS needs to set the volume object Id and extended information.
UnlockFileThis event fires when the OS needs to unlock a range of bytes in a file.
UnmountThis event fires after the component unmounts media from the virtual drive, making it unavailable.
WorkerThreadCreationFires just after a new worker thread is created.
WorkerThreadTerminationFires just before a worker thread is terminated.
WriteFileThis event fires when the OS needs to write data to an open file.

Config Settings


The following is a list of config settings for the component with short descriptions. Click on the links for further details.

AllowOriginatorBufferMappingWhether read file, write file, and enumerate directory requests may pass original buffers to event handlers.
AllowReadOutsideEofWhether read requests beyond the end of a file are surfaced, or automatically denied.
AlwaysFireIsDirectoryEmptySpecifies whether the IsDirectoryEmpty event should fire even when the driver has the needed information.
AsyncDeleteStorageNotificationsWhether system broadcasts for virtual drive deletion are sent asynchronously.
CacheDuringLockGetSizeSpecifies whether the file size should be requested via the GetFileInfo event when a file is locked.
CacheDuringLockPurgeSpecifies the strategy of handling the cached data when a file is locked.
ClusterSizeThe cluster size to create the virtual drive with.
CorrectAllocationSizesWhether to perform automatic allocation size correction.
DockerContainerIdId of the running Docker container, in which the virtual drive should be created.
FastRenameMoveWhether open files are closed and re-opened during a rename or move operation.
FileCachePolicyPurgeOnCloseWhether file data should be purged from the cache when the file is closed.
FileCachePolicyWriteThroughWhether file data should be written to storage as it is written to the cache.
FireFileInfoOutOfBandWhether the driver may fire multiple GetFileInfo requests simultaneously to other requests.
FireSetFileSizeOnWriteWhether to fire SetFileSize before WriteFile if writing would expand the file.
FlushFileBeforeUnlockWhether file buffers are flushed before completion of UnlockFile operation.
ForceFileCloseWhether the driver should force files to close after the last handle to them is closed.
ForceFileCloseDelaySpecifies the timeout between the closing of a last handle of a file and the moment the driver tries to close the file.
ImplicitAttributeUpdatesWhether SetFileAttributes fires when a file is modified.
LockRetryIntervalTime between repeated lock attempts.
LoggingEnabledWhether extended logging is enabled.
MaxReadBlockSizeThe maximum buffer size allowed for the ReadFile event.
MaxWorkerThreadCountThe maximum number of worker threads to use to fire events.
MaxWriteBlockSizeThe maximum buffer size allowed for the WriteFile event.
MinWorkerThreadCountThe minimum number of worker threads to use to fire events.
NrDeviceQueryInfoHandlingWhether the network redirector module should respond to file-specific requests sent to non-file entries.
OmitEventFilenamesWhether the filename parameter should be empty in events.
SectorSizeThe sector size to create the virtual drive with.
SupportPosixStyleDeletionWhether the driver should close all open handles to a file being deleted.
SupportSearchIndexerSpecifies whether the driver must take additional measures to support indexing by Windows Search.
SupportUnlockAllRequestsWhether the driver should fire the UnlockFile event for IRP_MN_UNLOCK_ALL requests or process them internally.
SynchronousCleanupFileWhether the driver should perform cleanup operations synchronously.
TranslateDOSCharsInEnumMasksWhether the DOS wildcard characters should be translated during search.
UnusedMetadataLifetimeThe time after which unused metadata cache entries are removed from the metadata cache.
UpdateFileMetadataOnOpenWhether the component should request file info and update internal records during file open.
UpdateLastWriteTimeOnContentsChangeWhether to fire SetFileAttributes when changes in file contents are made.
UpdateMetadataOfOpenFilesWhether times and attributes returned by GetFileInfo replace existing information if a file is opened.
UseProtectiveFSFilterWhether the driver should use a filesystem filter to try and prevent deadlocks.
UserModeFileCacheSizeThe size of the user mode file data cache.
UserModeLockFirstDefines the order of file range locking, whether a kernel-mode lock goes before or after the LockFile event is fired.
USNJournalPolicyHow USN Journal requests should be handled.
VolumeGuidNameThe GUID of the mounted volume.
WorkerInitialStackSizeThe initial stack size to create worker threads with.
ZeroOriginatorBufferBeforeMappingWhether the allocated buffer should be zeroed before it's passed to the event handler.
BuildInfoInformation about the product's build.
LicenseInfoInformation about the current license.

AccessDeniedProcessCount Property (CBFS Component)

The number of records in the AccessDeniedProcess arrays.

Syntax

func (obj *CBFS) AccessDeniedProcessCount() (int32, error)

Default Value

0

Remarks

This property controls the size of the following arrays:

The array indices start at 0 and end at AccessDeniedProcessCount - 1.

This property is read-only.

Data Type

int32

AccessDeniedProcessDesiredAccess Property (CBFS Component)

The kind of access granted or denied.

Syntax

func (obj *CBFS) AccessDeniedProcessDesiredAccess(AccessDeniedProcessIndex int32) (int32, error)

Default Value

0

Remarks

The kind of access granted or denied.

This property specifies what kind of access is granted or denied by the rule. Possible values are:

STG_DACCESS_READ0x00000001Grant/deny read access.

STG_DACCESS_WRITE0x00000002Grant/deny write access.

STG_DACCESS_READWRITE0x00000003Grant/deny read and write access.

The AccessDeniedProcessIndex parameter specifies the index of the item in the array. The size of the array is controlled by the AccessDeniedProcessCount property.

This property is read-only.

Data Type

int32

AccessDeniedProcessIncludeChildren Property (CBFS Component)

Whether child processes are affected.

Syntax

func (obj *CBFS) AccessDeniedProcessIncludeChildren(AccessDeniedProcessIndex int32) (bool, error)

Default Value

false

Remarks

Whether child processes are affected.

This property indicates whether the rule applies to children of the target process.

The AccessDeniedProcessIndex parameter specifies the index of the item in the array. The size of the array is controlled by the AccessDeniedProcessCount property.

This property is read-only.

Data Type

bool

AccessDeniedProcessId Property (CBFS Component)

The Id of the target process.

Syntax

func (obj *CBFS) AccessDeniedProcessId(AccessDeniedProcessIndex int32) (int32, error)

Default Value

0

Remarks

The Id of the target process.

This property reflects the target process's Id (PID). Will be 0 if the target process was specified by AccessDeniedProcessProcessName, or -1 if the rule applies to all processes.

The AccessDeniedProcessIndex parameter specifies the index of the item in the array. The size of the array is controlled by the AccessDeniedProcessCount property.

This property is read-only.

Data Type

int32

AccessDeniedProcessName Property (CBFS Component)

The filename of the target process's executable.

Syntax

func (obj *CBFS) AccessDeniedProcessName(AccessDeniedProcessIndex int32) (string, error)

Default Value

""

Remarks

The filename of the target process's executable.

This property reflects the full filename of the target process's executable. Will be empty if the target process was specified by AccessDeniedProcessProcessId (or if the rule applies to all processes, in which case AccessDeniedProcessProcessId will be -1).

The AccessDeniedProcessIndex parameter specifies the index of the item in the array. The size of the array is controlled by the AccessDeniedProcessCount property.

This property is read-only.

Data Type

string

AccessGrantedProcessCount Property (CBFS Component)

The number of records in the AccessGrantedProcess arrays.

Syntax

func (obj *CBFS) AccessGrantedProcessCount() (int32, error)

Default Value

0

Remarks

This property controls the size of the following arrays:

The array indices start at 0 and end at AccessGrantedProcessCount - 1.

This property is read-only.

Data Type

int32

AccessGrantedProcessDesiredAccess Property (CBFS Component)

The kind of access granted or denied.

Syntax

func (obj *CBFS) AccessGrantedProcessDesiredAccess(AccessGrantedProcessIndex int32) (int32, error)

Default Value

0

Remarks

The kind of access granted or denied.

This property specifies what kind of access is granted or denied by the rule. Possible values are:

STG_DACCESS_READ0x00000001Grant/deny read access.

STG_DACCESS_WRITE0x00000002Grant/deny write access.

STG_DACCESS_READWRITE0x00000003Grant/deny read and write access.

The AccessGrantedProcessIndex parameter specifies the index of the item in the array. The size of the array is controlled by the AccessGrantedProcessCount property.

This property is read-only.

Data Type

int32

AccessGrantedProcessIncludeChildren Property (CBFS Component)

Whether child processes are affected.

Syntax

func (obj *CBFS) AccessGrantedProcessIncludeChildren(AccessGrantedProcessIndex int32) (bool, error)

Default Value

false

Remarks

Whether child processes are affected.

This property indicates whether the rule applies to children of the target process.

The AccessGrantedProcessIndex parameter specifies the index of the item in the array. The size of the array is controlled by the AccessGrantedProcessCount property.

This property is read-only.

Data Type

bool

AccessGrantedProcessId Property (CBFS Component)

The Id of the target process.

Syntax

func (obj *CBFS) AccessGrantedProcessId(AccessGrantedProcessIndex int32) (int32, error)

Default Value

0

Remarks

The Id of the target process.

This property reflects the target process's Id (PID). Will be 0 if the target process was specified by AccessGrantedProcessProcessName, or -1 if the rule applies to all processes.

The AccessGrantedProcessIndex parameter specifies the index of the item in the array. The size of the array is controlled by the AccessGrantedProcessCount property.

This property is read-only.

Data Type

int32

AccessGrantedProcessName Property (CBFS Component)

The filename of the target process's executable.

Syntax

func (obj *CBFS) AccessGrantedProcessName(AccessGrantedProcessIndex int32) (string, error)

Default Value

""

Remarks

The filename of the target process's executable.

This property reflects the full filename of the target process's executable. Will be empty if the target process was specified by AccessGrantedProcessProcessId (or if the rule applies to all processes, in which case AccessGrantedProcessProcessId will be -1).

The AccessGrantedProcessIndex parameter specifies the index of the item in the array. The size of the array is controlled by the AccessGrantedProcessCount property.

This property is read-only.

Data Type

string

Active Property (CBFS Component)

This property specifies whether the component is active and handling OS requests.

Syntax

func (obj *CBFS) Active() (bool, error)

Default Value

false

Remarks

This property reflects whether the component is currently active and handling OS requests.

The property will be true once both CreateStorage and MountMedia have been called.

This property is read-only.

Data Type

bool

FileCache Property (CBFS Component)

This property specifies which file data cache implementation to use.

Syntax

func (obj *CBFS) FileCache() (int32, error)
func (obj *CBFS) SetFileCache(value int32) error

Default Value

1

Remarks

This property specifies which file data cache implementation a virtual drive should use, if any. Possible values are as follows:

  • fcNone (0): Do not use file data caching.
  • fcSystem (1, default): Delegate file data caching to the Windows file management system cache (recommended).
  • fcInternalKernelMode (2): Use the CBFS kernel mode file data cache implementation.
  • fcInternalUserMode (3): Use the CBFS user mode file data cache implementation.
When the cache is enabled, commonly used file data will be cached to help reduce the number of times the ReadFile and WriteFile events are fired.

When set to fcInternalUserMode (3), the UserModeFileCacheSize configuration setting can be used to control the cache size.

Please refer to the Caching topic for detailed information on each of the cache implementations.

Note: This property cannot be changed within events.

Data Type

int32

FileSystemName Property (CBFS Component)

The name of the virtual filesystem.

Syntax

func (obj *CBFS) FileSystemName() (string, error)
func (obj *CBFS) SetFileSystemName(value string) error

Default Value

"FAT32"

Remarks

This property specifies the name of the virtual filesystem. Windows, and some other applications, use this name to identify the filesystem.

In general, the filesystem name can be any reasonable string up to 10 characters in length. However, some versions of Windows and some third-party programs may behave differently when they encounter an unknown filesystem name (i.e., anything other than FAT, FAT32, exFAT, NTFS, etc.). Applications should keep this restriction in mind when choosing a filesystem name.

This property is set to FAT32 by default, which may cause some applications to fail when attempting to copy large (>4GB) files to and from the virtual drive. It is recommended that applications set this property to exFAT if such issues occur.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

string

FireAllOpenCloseEvents Property (CBFS Component)

This property specifies whether to fire events for all file open/close operations, or just the first and last.

Syntax

func (obj *CBFS) FireAllOpenCloseEvents() (bool, error)
func (obj *CBFS) SetFireAllOpenCloseEvents(value bool) error

Default Value

false

Remarks

This property specifies when the component should fire the CreateFile/OpenFile and CleanupFile/CloseFile events.

When this property is disabled (default), the component will not fire CreateFile/OpenFile for a file if another handle is already open for it. Similarly, the CleanupFile/CloseFile events will not be fired unless the handle being closed is the last handle open for the file in question. This behavior results in better overall performance because the number of event firings is minimized, but there are some drawbacks as well:

  • If the file is opened only for reading initially, and then another process opens it for writing, the application will not be notified about the new mode, and may not be prepared to respond to the "unexpected" WriteFile events that will arrive should the second process start writing to the file. (Such an application may be able to mitigate this issue by always opening the file data from the backend store in read-write mode.)
  • The HandleInfo parameter of various events has no effect; they carry handle-specific information that is not accessible to the application if this property is disabled.

When this property is enabled, the component fires the CreateFile/OpenFile and CleanupFile/CloseFile events every time a file handle is opened or closed.

This table shows when events will fire based on how this property is set:

Operation on FileDisabledEnabled
1. Opened by process A X X
2. Opened by process B X
3. Closed by process B X
4. Opened by process C X
5. Closed by process A X
6. Closed by process C X X

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

bool

HandleAllFsctls Property (CBFS Component)

This property specifies whether or not to fire the Fsctl event for all FSCTL_* requests.

Syntax

func (obj *CBFS) HandleAllFsctls() (bool, error)
func (obj *CBFS) SetHandleAllFsctls(value bool) error

Default Value

false

Remarks

This property specifies when the component should fire the Fsctl event. When disabled (default), the Fsctl event will fire only for FSCTLs whose function codes are in the 2400-4096 range (these codes are reserved by CBFS Connect for application use). When enabled, this Fsctl will fire for every FSCTL, except those processed by CBFS Connect itself.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

bool

MaxFileNameLength Property (CBFS Component)

This property includes the maximum filename length supported by the virtual filesystem.

Syntax

func (obj *CBFS) MaxFileNameLength() (int32, error)
func (obj *CBFS) SetMaxFileNameLength(value int32) error

Default Value

260

Remarks

This property specifies the virtual filesystem's maximum supported filename length, measured in characters. Setting this property to a value less than its default of 260 characters, which corresponds to Windows' MAX_PATH constant, is not recommended.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

int32

MaxFilePathLength Property (CBFS Component)

This property includes the maximum file path length supported by the virtual filesystem.

Syntax

func (obj *CBFS) MaxFilePathLength() (int32, error)
func (obj *CBFS) SetMaxFilePathLength(value int32) error

Default Value

32767

Remarks

This property specifies the virtual filesystem's maximum supported file path length, measured in characters; where file path means "a string containing all directory names plus the name of the file itself". Setting this property to a value of less than 260 characters, which corresponds to Windows' MAX_PATH constant, is not recommended.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

int32

MaxFileSize Property (CBFS Component)

This property includes the maximum file size supported by the virtual filesystem.

Syntax

func (obj *CBFS) MaxFileSize() (int64, error)
func (obj *CBFS) SetMaxFileSize(value int64) error

Default Value

0

Remarks

This property specifies the maximum file size, in bytes, supported by the virtual filesystem. The default value of 0 means "no limit".

Note: This property cannot be changed within events.

Data Type

int64

MetadataCacheEnabled Property (CBFS Component)

This property specifies whether or not the metadata cache should be used.

Syntax

func (obj *CBFS) MetadataCacheEnabled() (bool, error)
func (obj *CBFS) SetMetadataCacheEnabled(value bool) error

Default Value

true

Remarks

This property controls whether the file metadata cache is enabled for a virtual drive. The size of the file metadata cache can be controlled using the MetadataCacheSize property.

When enabled, the component caches file information obtained via EnumerateDirectory and GetFileInfo events and uses the cached metadata to serve operating system requests, thus reducing how often the GetFileInfo events fire.

While a file or directory is open, its metadata is kept available in a special record called a File Control Block, regardless of whether or not the metadata cache is enabled.

For closed files and directories, the metadata is kept in the cache for the time, defined by the UnusedMetadataLifetime configuration setting.

Please refer to the Caching topic for more information.

Note: This property cannot be changed within events.

Data Type

bool

MetadataCacheSize Property (CBFS Component)

This property includes the size of the metadata cache.

Syntax

func (obj *CBFS) MetadataCacheSize() (int32, error)
func (obj *CBFS) SetMetadataCacheSize(value int32) error

Default Value

2048

Remarks

This property specifies the size of the file metadata cache as a number of entries. The value must be a positive number. The maximum valid value is 65536.

Please refer to the MetadataCacheEnabled property, as well as the Caching topic, for more information.

Note: This property cannot be changed within events.

Data Type

int32

MountingPointCount Property (CBFS Component)

The number of records in the MountingPoint arrays.

Syntax

func (obj *CBFS) MountingPointCount() (int32, error)

Default Value

0

Remarks

This property controls the size of the following arrays:

The array indices start at 0 and end at MountingPointCount - 1.

This property is read-only.

Data Type

int32

MountingPointAuthenticationId Property (CBFS Component)

The Authentication ID used when creating the mounting point, if applicable.

Syntax

func (obj *CBFS) MountingPointAuthenticationId(MountingPointIndex int32) (int64, error)

Default Value

0

Remarks

The Authentication ID used when creating the mounting point, if applicable.

If the STGMP_LOCAL flag is included in the MountingPointFlags value, this property reflects the Authentication ID of the user session in which the mounting point was added. Will be 0 if the mounting point was added in the current user session or globally.

The MountingPointIndex parameter specifies the index of the item in the array. The size of the array is controlled by the MountingPointCount property.

This property is read-only.

Data Type

int64

MountingPointFlags Property (CBFS Component)

The flags used to create the mounting point.

Syntax

func (obj *CBFS) MountingPointFlags(MountingPointIndex int32) (int32, error)

Default Value

0

Remarks

The flags used to create the mounting point.

This property reflects the flags used to create the mounting point. It is a combination of zero or more of the following:

STGMP_SIMPLE0x00010000Create a simple mounting point.

Simple mounting points may be local or global; and when local, can be made visible in either the current user session or another one.

This flag cannot be combined with STGMP_MOUNT_MANAGER or STGMP_NETWORK, and is implied if neither of those flags are present.

STGMP_MOUNT_MANAGER0x00020000Create a mounting point that appears to the system as a physical device.

When the StorageType property is set to STGT_DISK_PNP, mounting points created using the system mount manager appear as physical devices in the Disk Management snap-in of the Microsoft Management Console (mmc.exe).

This flag is a necessary prerequisite for creating a folder mounting point, which makes a drive accessible via an otherwise empty directory on another NTFS volume.

This flag cannot be combined with STGMP_SIMPLE, STGMP_NETWORK, or STGMP_LOCAL.

Only one mounting point of this type can be added to a virtual drive.

An application cannot add a STGMP_MOUNT_MANAGER mounting point for a virtual drive created in a Docker container.

STGMP_NETWORK0x00040000Create a network mounting point.

Network mounting points can be further configured using the various STGMP_NETWORK_* flags described below. Applications that plan to make use of network mounting points must be sure to install the Helper DLL before doing so, otherwise Windows Explorer will not correctly recognize the "network" drive.

This flag cannot be combined with STGMP_SIMPLE or STGMP_MOUNT_MANAGER.

When a virtual drive is created in a Docker container by an application running on the host, it cannot add a mounting point of STGMP_NETWORK type. If an application is running in the container, STGMP_NETWORK type may be used.

STGMP_LOCAL0x10000000Specifies that a local mounting point should be created.

This flag specifies that a local mounting point should be created rather than a global one. When this flag is set, applications must also pass an appropriate value for the AddMountingPoint method's AuthenticationId parameter.

Passing 0 for AuthenticationId will make the mounting point visible in the current user session. To make the mounting point visible in a different user session instead, pass the target session's Authentication ID.

This flag is valid when combined with STGMP_SIMPLE or STGMP_NETWORK; it cannot be combined with STGMP_MOUNT_MANAGER. Please note that a mounting point can be made available to other computers as a network share, and network shares are always globally visible on the local machine, even if this flag is set.

STGMP_NETWORK_ALLOW_MAP_AS_DRIVE0x00000001Indicates that users may assign a drive letter to the share (e.g., using the 'Map network drive...' context menu item in Windows Explorer).

STGMP_NETWORK_HIDDEN_SHARE0x00000002Indicates that the share should be skipped during enumeration.

Such shares are only accessible when their name is already known to the accessor.

STGMP_NETWORK_READ_ACCESS0x00000004Makes a read-only share available for the mounting point.

When this flag is specified, the <Server Name> part of the MountingPoint parameter value must be empty. Please refer to the Mounting Points topic for more information. This flag makes the component use the Windows API's NetShareAdd function. As per MSDN, "Only members of the Administrators, System Operators, or Power Users local group can add file shares with a call to the NetShareAdd function."

This flag cannot be used together with STGMP_NETWORK_CLAIM_SERVER_NAME.

STGMP_NETWORK_WRITE_ACCESS0x00000008Makes a read/write share available for the mounting point.

When this flag is specified, the <Server Name> part of the MountingPoint parameter value must be empty. Please refer to the Mounting Points topic for more information. This flag makes the component use the Windows API's NetShareAdd function. As per MSDN, "Only members of the Administrators, System Operators, or Power Users local group can add file shares with a call to the NetShareAdd function."

This flag cannot be used together with STGMP_NETWORK_CLAIM_SERVER_NAME.

STGMP_NETWORK_CLAIM_SERVER_NAME0x00000010Specifies that the server name is unique.

When this flag is specified, the driver handles IOCTL_REDIR_QUERY_PATH[_EX] requests by instructing the OS to direct all requests going to the <Server Name> part of the MountingPoint parameter's value to the driver instead.

This flag should be used when the <Server Name> is unique within the local system (e.g., when the application's name is used). Using this flag allows the system to avoid delays caused by certain network requests made by various processes.

This flag is also required for "net view" command to be able to show the share in the list.

This flag cannot be used together with STGMP_NETWORK_READ_ACCESS or STGMP_NETWORK_WRITE_ACCESS.

STGMP_DRIVE_LETTER_NOTIFY_ASYNC0x20000000Causes the method to return immediately without waiting for mounting notifications to be sent to the system.

STGMP_AUTOCREATE_DRIVE_LETTER0x40000000Tells the component that it should assign the drive letter automatically.

When this flag is specified, the component will automatically assign a drive letter from the list of available letters. The assigned letter is added to the end of the list of mounting points, and can be retrieved from there.

Do not include a drive letter in the MountingPoint parameter's value when specifying this flag.

The MountingPointIndex parameter specifies the index of the item in the array. The size of the array is controlled by the MountingPointCount property.

This property is read-only.

Data Type

int32

MountingPointName Property (CBFS Component)

The mounting point name.

Syntax

func (obj *CBFS) MountingPointName(MountingPointIndex int32) (string, error)

Default Value

""

Remarks

The mounting point name.

This property reflects the name of the mounting point (i.e., the value passed to the AddMountingPoint method's MountingPoint parameter).

The MountingPointIndex parameter specifies the index of the item in the array. The size of the array is controlled by the MountingPointCount property.

This property is read-only.

Data Type

string

NonExistentFilesCacheEnabled Property (CBFS Component)

This property specifies whether or not the nonexistent files cache should be used.

Syntax

func (obj *CBFS) NonExistentFilesCacheEnabled() (bool, error)
func (obj *CBFS) SetNonExistentFilesCacheEnabled(value bool) error

Default Value

true

Remarks

This property controls whether the nonexistent files cache is enabled for a virtual drive. The size of the nonexistent files cache can be controlled using the NonExistentFilesCacheSize property.

When enabled, the component will cache any GetFileInfo responses that indicate that the requested file does not exist. If another request is later made for the same file, the component will use this information to automatically report a file not found error rather than firing the GetFileInfo event again.

Please refer to the Caching topic for more information.

Note: This property cannot be changed within events.

Data Type

bool

NonExistentFilesCacheSize Property (CBFS Component)

This property includes the size of the nonexistent files cache.

Syntax

func (obj *CBFS) NonExistentFilesCacheSize() (int32, error)
func (obj *CBFS) SetNonExistentFilesCacheSize(value int32) error

Default Value

2048

Remarks

This property specifies the maximum size of the nonexistent files cache as a number of entries. The value must be a positive number. The maximum valid value is 65536.

Please refer to the NonExistentFilesCacheEnabled property, as well as the Caching topic, for more information.

Note: This property cannot be changed within events.

Data Type

int32

OpenFilesCount Property (CBFS Component)

The number of records in the OpenFile arrays.

Syntax

func (obj *CBFS) OpenFilesCount() (int32, error)

Default Value

0

Remarks

This property controls the size of the following arrays:

The array indices start at 0 and end at OpenFilesCount - 1.

This property is read-only.

Data Type

int32

OpenFileHandleClosed Property (CBFS Component)

This property reflects whether the handle to the file has been closed.

Syntax

func (obj *CBFS) OpenFileHandleClosed(OpenFileIndex int32) (bool, error)

Default Value

false

Remarks

This property reflects whether the handle to the file has been closed.

This property reflects whether the handle to the file has been closed.

The OpenFileIndex parameter specifies the index of the item in the array. The size of the array is controlled by the OpenFilesCount property.

This property is read-only.

Data Type

bool

OpenFileName Property (CBFS Component)

This property reflects the name of the open file.

Syntax

func (obj *CBFS) OpenFileName(OpenFileIndex int32) (string, error)

Default Value

""

Remarks

This property reflects the name of the open file.

This property reflects the name of the open file.

The OpenFileIndex parameter specifies the index of the item in the array. The size of the array is controlled by the OpenFilesCount property.

This property is read-only.

Data Type

string

OpenFileProcessId Property (CBFS Component)

This property reflects the Id of the process that opened the file.

Syntax

func (obj *CBFS) OpenFileProcessId(OpenFileIndex int32) (int32, error)

Default Value

0

Remarks

This property reflects the Id of the process that opened the file.

This property reflects the Id of the process (PID) that opened the file.

The OpenFileIndex parameter specifies the index of the item in the array. The size of the array is controlled by the OpenFilesCount property.

This property is read-only.

Data Type

int32

OpenFileProcessName Property (CBFS Component)

This property reflects the name of the process that opened the file.

Syntax

func (obj *CBFS) OpenFileProcessName(OpenFileIndex int32) (string, error)

Default Value

""

Remarks

This property reflects the name of the process that opened the file.

This property reflects the name of the process that opened the file.

The OpenFileIndex parameter specifies the index of the item in the array. The size of the array is controlled by the OpenFilesCount property.

This property is read-only.

Data Type

string

OpenHandlesCount Property (CBFS Component)

This property includes the number of handles to filesystem objects in the virtual drive that are currently open.

Syntax

func (obj *CBFS) OpenHandlesCount() (int32, error)

Default Value

0

Remarks

This property reflects the number of handles to filesystem objects (e.g., files, directories) in the virtual drive that are currently open. It is populated when CreateOpenedFilesSnapshot is called, and cleared when CloseOpenedFilesSnapshot is called; please refer to those methods for more information.

This property's value may differ from that of the OpenObjectsCount property, and from the number of items in the OpenFile* properties. This occurs because each object can be opened several times, and because the OS may keep files open even after all handles to them have been closed.

Note: The methods and properties related to open files snapshots are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that creation, use, and cleanup of open files snapshots occurs in a thread-safe manner.

This property is read-only.

Data Type

int32

OpenObjectsCount Property (CBFS Component)

This property includes the number of filesystem objects in the virtual drive that are currently open.

Syntax

func (obj *CBFS) OpenObjectsCount() (int32, error)

Default Value

0

Remarks

This property reflects the number of filesystem objects (e.g., files, directories) in the virtual drive that are currently open. It is populated when CreateOpenedFilesSnapshot is called and cleared when CloseOpenedFilesSnapshot is called; please refer to those methods for more information.

This property's value may differ from that of the OpenHandlesCount property, and from the number of items in the OpenFile* properties. This occurs because each object can be opened several times, and because the OS may keep files open even after all handles to them have been closed.

Note: The methods and properties related to open files snapshots are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that creation, use, and cleanup of open files snapshots occurs in a thread-safe manner.

This property is read-only.

Data Type

int32

ProcessRestrictionsEnabled Property (CBFS Component)

Whether process access restrictions are enabled.

Syntax

func (obj *CBFS) ProcessRestrictionsEnabled() (bool, error)
func (obj *CBFS) SetProcessRestrictionsEnabled(value bool) error

Default Value

false

Remarks

This property controls whether the component should enforce per-process access restrictions; by default, it is disabled. When enabled, the AddGrantedProcess and AddDeniedProcess methods can be used to add process-specific access rules for the component to enforce across the entire virtual drive.

When an application enables this propery, it should use the AddGrantedProcess method to add at least one pocess as allowed; otherwise, the data will be inaccessible.

The current process access rules are reflected by the AccessGrantedProcess* and AccessDeniedProcess* properties.

Note: The methods and properties related to process access lists are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that manipulation and enumeration of process access information occurs in a thread-safe manner.

Data Type

bool

SerializeAccess Property (CBFS Component)

This property specifies whether nonintersecting operations against the same file should execute serially or in parallel.

Syntax

func (obj *CBFS) SerializeAccess() (bool, error)
func (obj *CBFS) SetSerializeAccess(value bool) error

Default Value

true

Remarks

This property specifies whether the component should force nonintersecting operations against a single file or directory to execute serially (default), or allow them to execute in parallel.

Parallel processing can speed up operations, to a certain extent. When this property is disabled, and two or more requests (which do not change filesystem information) are made against the same file or directory, those requests are surfaced in parallel through the appropriate events (assuming that enough worker threads are available to service them at the time). By default, this property is enabled, and such requests are serialized. Please refer to the Threading and Concurrency topic for more information.

Note: For parallel processing to work, the SerializeEvents property must be disabled, and the MinWorkerThreadCount and MaxWorkerThreadCount configuration settings must be set such that parallel processing can actually occur.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

bool

SerializeEvents Property (CBFS Component)

Whether events should be fired on a single worker thread, or many.

Syntax

func (obj *CBFS) SerializeEvents() (int32, error)
func (obj *CBFS) SetSerializeEvents(value int32) error

Default Value

0

Remarks

This property specifies whether the component should fire all events serially on a single worker thread, or concurrently on multiple worker threads. The possible values are:

0 (seOnMultipleThreads) The component fires events in the context of multiple worker threads. The MinWorkerThreadCount and MaxWorkerThreadCount configuration settings control how many worker threads are used for this.
1 (seOnOneWorkerThread) The component fires events in the context of one background worker thread.

Please note that, in general, the component will always fire events related to a single file sequentially (though not necessarily on the same worker thread all the time), regardless of how this property is set. The one exception is that, if this property is set to seOnMultipleThreads, the SerializeAccess property can be enabled to allow multiple read requests made against a single file to execute concurrently. Please refer to the Threading and Concurrency topic for more information.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

int32

StorageCharacteristics Property (CBFS Component)

The characteristic flags to create the virtual drive with (Windows only).

Syntax

func (obj *CBFS) StorageCharacteristics() (int32, error)
func (obj *CBFS) SetStorageCharacteristics(value int32) error

Default Value

16

Remarks

The system, as well as other applications, use these flags to optimize their use of the virtual drive. This property should be set by OR'ing together zero or more of the following flags:

STGC_FLOPPY_DISKETTE0x00000001The storage is a floppy disk device.

This flag is not supported when StorageType is set to STGT_DISK_PNP.

STGC_READONLY_DEVICE0x00000002The storage is a read-only device.

STGC_WRITE_ONCE_MEDIA0x00000008The storage device's media can only be written to once.

This flag is not supported when StorageType is set to STGT_DISK_PNP.

STGC_REMOVABLE_MEDIA0x00000010The storage device's media is removable.

Users may remove the storage media from the virtual drive at any time. (Note that this flag does not indicate that the virtual drive itself is removable.)

STGC_AUTOCREATE_DRIVE_LETTER0x00002000The system should automatically create a drive letter for the storage device.

Deprecated: Include the STGMP_AUTOCREATE_DRIVE_LETTER flag in the value passed for the AddMountingPoint method's Flags parameter instead.

When this flag is present, the StorageGUID property must be set. This flag only works when StorageType is set to STGT_DISK_PNP.

STGC_SHOW_IN_EJECTION_TRAY0x00004000The storage device should be shown in the 'Safely Remove Hardware and Eject Media' menu in the system notification area (system tray).

This flag only works when StorageType is set to STGT_DISK_PNP.

STGC_ALLOW_EJECTION0x00008000The storage device can be ejected.

Users may eject the virtual drive at any time. When the virtual drive is ejected, it is destroyed.

This flag only works when StorageType is set to STGT_DISK_PNP.

STGC_RESERVED_10x00010000Reserved, do not use.

STGC_RESERVED_20x00020000Reserved, do not use.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

int32

StorageGUID Property (CBFS Component)

The GUID to create the virtual drive with.

Syntax

func (obj *CBFS) StorageGUID() (string, error)
func (obj *CBFS) SetStorageGUID(value string) error

Default Value

""

Remarks

When the StorageType property is set to STGT_DISK_PNP, this property is used to specify a GUID for the virtual drive, and must be set to GUID-formatted string (e.g., {676D0357-A23A-49c3-B433-65AAD72DD282}). Otherwise, this property may be left empty; in the latter case, the driver will generate a unique value when a drive is mounted.

Some software uses a drive's GUID for the purpose of setting and maintaining certain configuration parameters. Therefore, applications are expected to use the same GUID when repeatedly creating a virtual drive that represents the same data.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

string

StoragePresent Property (CBFS Component)

This property specifies whether a virtual drive has been created.

Syntax

func (obj *CBFS) StoragePresent() (bool, error)

Default Value

false

Remarks

This property reflects whether a virtual drive has been created; it is automatically updated by the component whenever the virtual drive's presence changes (e.g., due to calls to CreateStorage, DeleteStorage).

This property is read-only.

Data Type

bool

StorageType Property (CBFS Component)

The type of virtual drive to create (Windows only).

Syntax

func (obj *CBFS) StorageType() (int32, error)
func (obj *CBFS) SetStorageType(value int32) error

Default Value

0

Remarks

This property specifies what type of virtual drive should be created. Windows Explorer uses this information to display the appropriate icon and apply the appropriate security settings for the virtual drive. Other applications may also make use of this information in various ways.

Possible values are:

STGT_DISK0x00000000Create a regular disk device.

STGT_CDROM0x00000001Create a CD-ROM or DVD device.

STGT_DISK_PNP0x00000003Create a plug-and-play storage device.

Important: The CBFS Connect system driver must be installed in PnP mode for this option to function properly.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Plug-and-play Virtual Drives

Virtual drives created as plug-and-play (STGT_DISK_PNP) require that a "physical device" be visible in the Disk Manager snap-in of the Microsoft Management Console (mmc.exe). This can be accomplished by calling the AddMountingPoint method and including the STGMP_MOUNT_MANAGER flag in the value passed for its Flags parameter.

In addition to supporting the STGC_REMOVABLE_MEDIA StorageCharacteristics flag, which specifies whether a virtual drive's media is removable or non-removable, plug-and-play virtual drives also support the STGC_ALLOW_EJECTION flag, which specifies whether a virtual drive itself is removable or non-removable.

Data Type

int32

SupportChangeTimeAttribute Property (CBFS Component)

This property specifies whether the virtual filesystem supports the ChangeTime file attribute.

Syntax

func (obj *CBFS) SupportChangeTimeAttribute() (bool, error)
func (obj *CBFS) SetSupportChangeTimeAttribute(value bool) error

Default Value

false

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports the ChangeTime file attribute, which tracks the last time a file's metadata (e.g., permissions) or content was changed. The ChangeTime attribute is optional, and applications can choose not to handle it in events by simply leaving the value of the corresponding parameter unchanged.

Note: If the application is identifying its virtual filesystem (via FileSystemName) as NTFS, and this property is disabled, the component will still handle the ChangeTime attribute implicitly by setting it equal to LastWriteTime.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

bool

SupportCompressedAttribute Property (CBFS Component)

This property specifies whether the virtual filesystem supports the Compressed file attribute.

Syntax

func (obj *CBFS) SupportCompressedAttribute() (bool, error)
func (obj *CBFS) SetSupportCompressedAttribute(value bool) error

Default Value

false

Remarks

When enabled, this property tells the driver to report support of compression to the operating system. When such a support is reported, processes may read or change the Compressed attribute of a file. An implementation of a virtual filesystem should provide the Compressed status through the file attributes in the GetFileInfo and EnumerateDirectory events. The attribute may be changed by the system, and such a change is communicated to the implementation by the Attributes parameter in the SetFileAttributes event.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

bool

SupportLastAccessTimeAttribute Property (CBFS Component)

This property specifies whether the virtual filesystem supports the LastAccessTime file attribute.

Syntax

func (obj *CBFS) SupportLastAccessTimeAttribute() (bool, error)
func (obj *CBFS) SetSupportLastAccessTimeAttribute(value bool) error

Default Value

true

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports the LastAccessTime file attribute, which tracks the last time a file's contents were accessed.

When this property is enabled (default), a file's LastAccessTime attribute gets updated whenever the file is closed (unless fewer than 60 seconds have elapsed since the previous LastAccessTime). When this property is disabled, a file's LastAccessTime is still tracked and passed along with its LastWriteTime when the latter is changed, but it is not updated separately when the file is closed.

Note: This property cannot be changed after a virtual drive is created, and it cannot be changed within events.

Data Type

bool

SupportODXReadWrite Property (CBFS Component)

This property specifies whether the virtual filesystem supports ODX (Offloaded Data Transfer) operations.

Syntax

func (obj *CBFS) SupportODXReadWrite() (bool, error)
func (obj *CBFS) SetSupportODXReadWrite(value bool) error

Default Value

false

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports ODX (Offloaded Data Transfer) operations. Please refer to Microsoft's Offloaded Data Transfer article for more information.

If this property is enabled, the application must properly handle the OffloadReadFile and OffloadWriteFile events, which will fire anytime the OS sends an offload read or offload write request to the virtual filesystem.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

Tag Property (CBFS Component)

This property stores application-defined data specific to a particular instance of the component.

Syntax

func (obj *CBFS) Tag() (int64, error)
func (obj *CBFS) SetTag(value int64) error

Default Value

0

Remarks

This property can be used to store data specific to a particular instance of the component.

Data Type

int64

UseAlternateDataStreams Property (CBFS Component)

This property specifies whether or not the virtual filesystem supports alternate data streams.

Syntax

func (obj *CBFS) UseAlternateDataStreams() (bool, error)
func (obj *CBFS) SetUseAlternateDataStreams(value bool) error

Default Value

false

Remarks

This property specifies whether or not the virtual filesystem should indicate to the system that it supports alternate data streams (ADS, otherwise known as "named streams"). Alternate data streams can be present in both files and directories.

If this property is enabled, the application must properly handle the EnumerateNamedStreams and CloseNamedStreamsEnumeration events for alternate data streams to function correctly. Additionally, the application's GetFileInfo and EnumerateDirectory event handlers must take into account requests made by the OS to work with the alternate data streams.

Note: Alternate data streams are an expected feature of the NTFS filesystem; if the application is identifying its virtual filesystem (via FileSystemName) as NTFS, supporting alternate data streams is recommended.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

UseCaseSensitiveFileNames Property (CBFS Component)

This property specifies whether the virtual filesystem is case-sensitive or just case-preserving.

Syntax

func (obj *CBFS) UseCaseSensitiveFileNames() (bool, error)
func (obj *CBFS) SetUseCaseSensitiveFileNames(value bool) error

Default Value

false

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it is case-sensitive (true) or just case-preserving (false; default).

Traditionally, Windows uses a case-insensitive filesystem architecture. The NTFS filesystem has a case-sensitive mode, however, to support a POSIX subsystem; enabling this property will make the component behave in a manner similar to NTFS with regards to case-sensitivity by doing the following:

  • Informing Windows that it supports preserving filename casing (which the application must actually do in its code).
  • Working in a case-sensitive manner when managing caches.
  • Firing the GetFileInfo event to obtain a real filename if a mixed-case name is encountered.

In addition to enabling this property, a flag must be set in the registry for case-sensitive filename support to work. Specifically, in the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\kernel registry key, the DWORD ObCaseInsensitive must be set to 0.

Note: The component always attempts to work with case-sensitive filenames, regardless of how this property is set. When a file is being opened, the CBFS Connect driver looks for the name of the file in the metadata cache, if an exact match is not found, the GetFileInfo event is fired to allow the application to supply a corrected filename through the RealFileName parameter. If the application chooses not to do so, the case-insensitive name will be used.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

UseDirectoryEmptyCheck Property (CBFS Component)

This property specifies whether the IsDirectoryEmpty event should be used.

Syntax

func (obj *CBFS) UseDirectoryEmptyCheck() (bool, error)
func (obj *CBFS) SetUseDirectoryEmptyCheck(value bool) error

Default Value

true

Remarks

This property specifies whether the component should fire the IsDirectoryEmpty event when the OS needs to check whether a directory is empty. Such checks typically are performed just before the OS requests that a directory be deleted.

If this property is enabled (default), the application must properly handle the IsDirectoryEmpty event.

Note: Use of the IsDirectoryEmpty event is efficient only if the virtual filesystem has a fast way to check whether directories contain any entries (e.g., files, subdirectories, links). If such a check would require enumerating child entries, it is more efficient for the application to disable this property and perform the check directly within the CanFileBeDeleted event instead.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

UseDiskQuotas Property (CBFS Component)

This property specifies whether the virtual filesystem supports disk quotas.

Syntax

func (obj *CBFS) UseDiskQuotas() (bool, error)
func (obj *CBFS) SetUseDiskQuotas(value bool) error

Default Value

false

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports disk quota management.

If this property is enabled, the application must properly handle the QueryQuotas, SetQuotas, GetDefaultQuotaInfo, and SetDefaultQuotaInfo events for quota management to function correctly. The GetFileNameByFileId event must be handled as well.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

UseFileIds Property (CBFS Component)

This property specifies whether the virtual filesystem supports file Ids.

Syntax

func (obj *CBFS) UseFileIds() (bool, error)
func (obj *CBFS) SetUseFileIds(value bool) error

Default Value

true

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports File IDs.

If this property is enabled, the application must properly handle the GetFileInfo and EnumerateDirectory events and return proper file Ids for files and directories. The GetFileNameByFileId event must be handled as well.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

UseHardLinks Property (CBFS Component)

This property specifies whether the virtual filesystem supports hard links.

Syntax

func (obj *CBFS) UseHardLinks() (bool, error)
func (obj *CBFS) SetUseHardLinks(value bool) error

Default Value

false

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports hard links to files.

If this property is enabled, the application must properly handle the CreateHardLink, EnumerateHardLinks, and CloseHardLinksEnumeration events for hard links to function correctly. The GetFileNameByFileId event must be handled as well, and the GetFileInfo must always be sure to return the number of hard links a file has by setting the HardLinkCount event parameter appropriately.

Note: Hard links are an expected feature of the NTFS filesystem; if the application is identifying its virtual filesystem (via FileSystemName) as NTFS, supporting hard links is recommended.

Please refer to the Hard Links topic for more information.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

UseObjectIds Property (CBFS Component)

This property specifies whether the virtual filesystem supports a volume object Id.

Syntax

func (obj *CBFS) UseObjectIds() (bool, error)
func (obj *CBFS) SetUseObjectIds(value bool) error

Default Value

true

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports a volume object Id.

If this property is true, the application must properly handle the GetVolumeObjectId and SetVolumeObjectId events. Set this property to false to tell the OS that the volume object Id is not supported.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

UseReparsePoints Property (CBFS Component)

This property specifies whether the virtual filesystem supports reparse points.

Syntax

func (obj *CBFS) UseReparsePoints() (bool, error)
func (obj *CBFS) SetUseReparsePoints(value bool) error

Default Value

false

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports reparse points.

If this property is enabled, the application must properly handle the SetReparsePoint, GetReparsePoint, and DeleteReparsePoint events for reparse points to function correctly.

Note: Reparse points are an expected feature of the NTFS filesystem; if the application is identifying its virtual filesystem (via FileSystemName) as NTFS, supporting reparse points is recommended. Reparse point support is also expected by the NFS sharing components of the OS.

Please refer to the Reparse Points topic for more information.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

UseShortFileNames Property (CBFS Component)

This property specifies whether the virtual filesystem supports short (8.3) filenames.

Syntax

func (obj *CBFS) UseShortFileNames() (bool, error)
func (obj *CBFS) SetUseShortFileNames(value bool) error

Default Value

false

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports short filenames (also known as 8.3 filenames). Short filename support may be necessary for some older third-party applications to be able to access the virtual filesystem's files.

If this property is enabled, the application must be sure to return short filenames when handling the EnumerateDirectory and GetFileInfo events; and must be able to handle any event firing with a short filename rather than a normal one.

Please refer to the Short File Names topic for more information.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

UseWindowsSecurity Property (CBFS Component)

This property specifies whether the virtual filesystem supports Windows' ACL-based security mechanisms.

Syntax

func (obj *CBFS) UseWindowsSecurity() (bool, error)
func (obj *CBFS) SetUseWindowsSecurity(value bool) error

Default Value

false

Remarks

This property specifies whether the virtual filesystem should indicate to the system that it supports Windows' standard security mechanisms, which are based on ACLs (access control lists).

If this property is enabled, the application must properly handle the GetFileSecurity and SetFileSecurity events for Windows' security mechanisms to function properly.

Note: Windows' security attributes are an expected feature of the NTFS filesystem; if the application is identifying its virtual filesystem (via FileSystemName) as NTFS, supporting Windows' security attributes is recommended.

Please refer to the Security Checks topic for more information.

Note: This property cannot be changed when Active is true, and it cannot be changed within events.

Data Type

bool

AddDeniedProcess Method (CBFS Component)

Adds a rule that prevents a process from accessing the virtual drive.

Syntax

func (obj *CBFS) AddDeniedProcess(ProcessFileName string, ProcessId int32, ChildProcesses bool, DesiredAccess int32) error

Remarks

When the ProcessRestrictionsEnabled property is enabled, this method can be used to add an access rule that denies the process specified by ProcessFileName or ProcessId the access right specified by DesiredAccess.

Processes that are already running can be specified by passing their process Id (PID) for the ProcessId parameter (in which case ProcessFileName should be empty). Processes that have not yet started can be specified by passing the full filename of the process's executable file for ProcessFileName (in which case ProcessId should be set to 0). If ProcessName is empty, and ProcessId is -1, the new rule will apply to all processes. When adding a PID-based rule, you need to be aware of the PID Reuse behavior of Windows.

ChildProcesses controls whether the rule also applies to children of the target process.

DesiredAccess specifies the access right to deny; valid values are:

STG_DACCESS_READ0x00000001Grant/deny read access.

STG_DACCESS_WRITE0x00000002Grant/deny write access.

STG_DACCESS_READWRITE0x00000003Grant/deny read and write access.

To remove the process access rule later, pass the same ProcessFileName and ProcessId values to the RemoveDeniedProcess method.

Note: This method can be called only when Active is true, and it cannot be called within events.

The methods and properties related to process access lists are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that manipulation and enumeration of process access information occurs in a thread-safe manner.

AddGrantedProcess Method (CBFS Component)

Adds a rule that allows a process to access the virtual drive.

Syntax

func (obj *CBFS) AddGrantedProcess(ProcessFileName string, ProcessId int32, ChildProcesses bool, DesiredAccess int32) error

Remarks

When the ProcessRestrictionsEnabled property is enabled, this method can be used to add an access rule that grants the process specified by ProcessFileName or ProcessId the access right specified by DesiredAccess.

Processes that are already running can be specified by passing their process Id (PID) for the ProcessId parameter (in which case ProcessFileName should be empty). Processes that have not yet started can be specified by passing the full filename of the process's executable file for ProcessFileName (in which case ProcessId should be set to 0). If ProcessName is empty, and ProcessId is -1, the new rule will apply to all processes. When adding a PID-based rule, you need to be aware of the PID Reuse behavior of Windows.

ChildProcesses controls whether the rule also applies to children of the target process.

DesiredAccess specifies the access right to grant; valid values are:

STG_DACCESS_READ0x00000001Grant/deny read access.

STG_DACCESS_WRITE0x00000002Grant/deny write access.

STG_DACCESS_READWRITE0x00000003Grant/deny read and write access.

To remove the process access rule later, pass the same ProcessFileName and ProcessId values to the RemoveGrantedProcess method.

Note: This method can be called only when Active is true, and it cannot be called within events.

The methods and properties related to process access lists are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that manipulation and enumeration of process access information occurs in a thread-safe manner.

AddMountingPoint Method (CBFS Component)

Adds a mounting point for the virtual drive.

Syntax

func (obj *CBFS) AddMountingPoint(MountingPoint string, Flags int32, AuthenticationId int64) error

Remarks

This method adds a new mounting point for the virtual drive (which must have already been created using CreateStorage). Virtual drives may have as many mounting points as desired.

Typically, mounting points may be added before or after MountMedia is called. However, for plug-and-play virtual drives with non-removable media (see StorageType), AddMountingPoint must not be called until after the MountMedia method has been called successfully, otherwise an error will occur.

MountingPoint should be set to the name/path of the mounting point. The format of this value varies based what type of mounting point the application wishes to create; please refer to the Mounting Points topic for more information.

The Flags parameter is used to specify properties for the mounting point, and should be set by OR'ing together zero or more of the following flags:

STGMP_SIMPLE0x00010000Create a simple mounting point.

Simple mounting points may be local or global; and when local, can be made visible in either the current user session or another one.

This flag cannot be combined with STGMP_MOUNT_MANAGER or STGMP_NETWORK, and is implied if neither of those flags are present.

STGMP_MOUNT_MANAGER0x00020000Create a mounting point that appears to the system as a physical device.

When the StorageType property is set to STGT_DISK_PNP, mounting points created using the system mount manager appear as physical devices in the Disk Management snap-in of the Microsoft Management Console (mmc.exe).

This flag is a necessary prerequisite for creating a folder mounting point, which makes a drive accessible via an otherwise empty directory on another NTFS volume.

This flag cannot be combined with STGMP_SIMPLE, STGMP_NETWORK, or STGMP_LOCAL.

Only one mounting point of this type can be added to a virtual drive.

An application cannot add a STGMP_MOUNT_MANAGER mounting point for a virtual drive created in a Docker container.

STGMP_NETWORK0x00040000Create a network mounting point.

Network mounting points can be further configured using the various STGMP_NETWORK_* flags described below. Applications that plan to make use of network mounting points must be sure to install the Helper DLL before doing so, otherwise Windows Explorer will not correctly recognize the "network" drive.

This flag cannot be combined with STGMP_SIMPLE or STGMP_MOUNT_MANAGER.

When a virtual drive is created in a Docker container by an application running on the host, it cannot add a mounting point of STGMP_NETWORK type. If an application is running in the container, STGMP_NETWORK type may be used.

STGMP_LOCAL0x10000000Specifies that a local mounting point should be created.

This flag specifies that a local mounting point should be created rather than a global one. When this flag is set, applications must also pass an appropriate value for the AddMountingPoint method's AuthenticationId parameter.

Passing 0 for AuthenticationId will make the mounting point visible in the current user session. To make the mounting point visible in a different user session instead, pass the target session's Authentication ID.

This flag is valid when combined with STGMP_SIMPLE or STGMP_NETWORK; it cannot be combined with STGMP_MOUNT_MANAGER. Please note that a mounting point can be made available to other computers as a network share, and network shares are always globally visible on the local machine, even if this flag is set.

STGMP_NETWORK_ALLOW_MAP_AS_DRIVE0x00000001Indicates that users may assign a drive letter to the share (e.g., using the 'Map network drive...' context menu item in Windows Explorer).

STGMP_NETWORK_HIDDEN_SHARE0x00000002Indicates that the share should be skipped during enumeration.

Such shares are only accessible when their name is already known to the accessor.

STGMP_NETWORK_READ_ACCESS0x00000004Makes a read-only share available for the mounting point.

When this flag is specified, the <Server Name> part of the MountingPoint parameter value must be empty. Please refer to the Mounting Points topic for more information. This flag makes the component use the Windows API's NetShareAdd function. As per MSDN, "Only members of the Administrators, System Operators, or Power Users local group can add file shares with a call to the NetShareAdd function."

This flag cannot be used together with STGMP_NETWORK_CLAIM_SERVER_NAME.

STGMP_NETWORK_WRITE_ACCESS0x00000008Makes a read/write share available for the mounting point.

When this flag is specified, the <Server Name> part of the MountingPoint parameter value must be empty. Please refer to the Mounting Points topic for more information. This flag makes the component use the Windows API's NetShareAdd function. As per MSDN, "Only members of the Administrators, System Operators, or Power Users local group can add file shares with a call to the NetShareAdd function."

This flag cannot be used together with STGMP_NETWORK_CLAIM_SERVER_NAME.

STGMP_NETWORK_CLAIM_SERVER_NAME0x00000010Specifies that the server name is unique.

When this flag is specified, the driver handles IOCTL_REDIR_QUERY_PATH[_EX] requests by instructing the OS to direct all requests going to the <Server Name> part of the MountingPoint parameter's value to the driver instead.

This flag should be used when the <Server Name> is unique within the local system (e.g., when the application's name is used). Using this flag allows the system to avoid delays caused by certain network requests made by various processes.

This flag is also required for "net view" command to be able to show the share in the list.

This flag cannot be used together with STGMP_NETWORK_READ_ACCESS or STGMP_NETWORK_WRITE_ACCESS.

STGMP_DRIVE_LETTER_NOTIFY_ASYNC0x20000000Causes the method to return immediately without waiting for mounting notifications to be sent to the system.

STGMP_AUTOCREATE_DRIVE_LETTER0x40000000Tells the component that it should assign the drive letter automatically.

When this flag is specified, the component will automatically assign a drive letter from the list of available letters. The assigned letter is added to the end of the list of mounting points, and can be retrieved from there.

Do not include a drive letter in the MountingPoint parameter's value when specifying this flag.

If no flags are specified, the STGMP_SIMPLE flag is assumed.

If the STGMP_LOCAL flag is set, the AuthenticationId parameter should be set to the Authentication ID of the user session the mounting point should visible in; or to 0 to make the mounting point visible in the current user session. If the aforementioned flag is not set and AuthenticationId is 0, the mounting point will be global (i.e., visible in all user sessions). When AuthenticationId is set to a non-zero value, STGMP_LOCAL is implied. Please refer to the Mounting Points topic for more information.

To create a virtual drive in a container from the host, set the container's Id via the DockerContainerId configuration setting prior to calling AddMountingPoint. Note: not all mounting point types are supported when a mounting point is created in a container. Please refer to the Docker Containers for more information.

Note: This method cannot be called within events.

The methods and properties related to mounting points are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that manipulation and enumeration of mounting points occurs in a thread-safe manner.

Virtual Drives, Media, and Mounting Points

In the FUSE component, a mount point is specified as a parameter of the Mount method. Mounting includes both creation of a drive (virtual device) and mounting a media into this device.

The information below applies to the CBFS component.

When applications call the CreateStorage method, a virtual drive is created. Virtual drives are created without any "media" in them (like a CD drive without a CD inserted), and without any mounting points (drive letters, UNC paths, etc.).

After creating a virtual drive, applications should call MountMedia to "insert" virtual storage media into the virtual drive. This call will cause the component's events to start firing; applications must handle these events correctly, or the MountMedia call will fail.

Once media has been mounted in the virtual drive, applications should use the AddMountingPoint method to add one or more mounting points for the virtual drive. These mounting points make the virtual drive, visible to the system and other applications, allowing them to start accessing the contents of the CBFS-based virtual filesystem.

Note that applications can technically call AddMountingPoint before MountMedia (except for plug-and-play virtual drives with non-removable media; see StorageType), but any attempts to access a virtual drive with no media mounted will result in a "no media" error.

CloseOpenedFilesSnapshot Method (CBFS Component)

Closes the previously-created opened files snapshot.

Syntax

func (obj *CBFS) CloseOpenedFilesSnapshot() error

Remarks

This method closes the opened files snapshot previously created by CreateOpenedFilesSnapshot, releasing the memory associated with it. Please refer to that method's documentation for more information.

Note: This method cannot be called within events.

The methods and properties related to open files snapshots are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that creation, use, and cleanup of open files snapshots occurs in a thread-safe manner.

Config Method (CBFS Component)

Sets or retrieves a configuration setting.

Syntax

func (obj *CBFS) Config(ConfigurationString string) (string, error)

Remarks

Config is a generic method available in every component. It is used to set and retrieve configuration settings for the component.

These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the component, access to these internal properties is provided through the Config method.

To set a configuration setting named PROPERTY, you must call Config("PROPERTY=VALUE"), where VALUE is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).

To read (query) the value of a configuration setting, you must call Config("PROPERTY"). The value will be returned as a string.

CreateOpenedFilesSnapshot Method (CBFS Component)

Creates a snapshot of information about files that are currently open.

Syntax

func (obj *CBFS) CreateOpenedFilesSnapshot() error

Remarks

This method creates a snapshot of information about all files and directories in the virtual filesystem that are currently open. This information is then used to populate the OpenFile* properties, as well as the OpenHandlesCount and OpenObjectsCount properties.

Note that there will always be at least one item in the OpenFile* properties since the virtual volume itself is always inherently open.

When the application is finished working with the opened files snapshot, it must close it by calling the CloseOpenedFilesSnapshot method in order to release the associated memory. If this method is called again before an existing snapshot is closed, the component will attempt to close it before creating a new one.

Note: This method can be called only when Active is true, and it cannot be called within events.

The methods and properties related to open files snapshots are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that creation, use, and cleanup of open files snapshots occurs in a thread-safe manner.

CreateStorage Method (CBFS Component)

This method creates the virtual drive.

Syntax

func (obj *CBFS) CreateStorage() error

Remarks

This method creates the virtual drive (without mounting points) based on the following properties and configuration settings, which cannot be changed once the virtual storage has been created:

Note: Many other properties, although not directly used by this method, nonetheless cannot be changed once a virtual drive is created. Such restrictions are noted where applicable.

After the virtual drive is created, use the MountMedia method to "insert storage media" into the virtual drive, and use the AddMountingPoint method to create one or more mounting points for it.

The Initialize method must have been called by some component instance in the application before calling this method.

Note: This method cannot be called within events.

Virtual Drives, Media, and Mounting Points

In the FUSE component, a mount point is specified as a parameter of the Mount method. Mounting includes both creation of a drive (virtual device) and mounting a media into this device.

The information below applies to the CBFS component.

When applications call the CreateStorage method, a virtual drive is created. Virtual drives are created without any "media" in them (like a CD drive without a CD inserted), and without any mounting points (drive letters, UNC paths, etc.).

After creating a virtual drive, applications should call MountMedia to "insert" virtual storage media into the virtual drive. This call will cause the component's events to start firing; applications must handle these events correctly, or the MountMedia call will fail.

Once media has been mounted in the virtual drive, applications should use the AddMountingPoint method to add one or more mounting points for the virtual drive. These mounting points make the virtual drive, visible to the system and other applications, allowing them to start accessing the contents of the CBFS-based virtual filesystem.

Note that applications can technically call AddMountingPoint before MountMedia (except for plug-and-play virtual drives with non-removable media; see StorageType), but any attempts to access a virtual drive with no media mounted will result in a "no media" error.

DeleteStorage Method (CBFS Component)

This method deletes the virtual drive.

Syntax

func (obj *CBFS) DeleteStorage(ForceUnmount bool) error

Remarks

This method attempts to delete the virtual drive. The ForceUnmount parameter controls how this method behaves if any mounting points currently exist for the virtual drive.

If ForceUnmount is true, any existing mounting points are forcibly removed (and any open handles are closed along the way). If ForceUnmount is false and any mounting points exist for it, this method returns an error.

Note: This method cannot be called within events.

DisableRouteCache Method (CBFS Component)

This method disables the automatic routing of requests to local files.

Syntax

func (obj *CBFS) DisableRouteCache(InvalidateRoutedFiles bool) error

Remarks

This method disables the automatic routing of requests to files in the directory specified by a previous call to EnableRouteCache. Please refer to that method for more information about said request routing.

The InvalidateRoutedFiles parameter controls what happens to any handles currently open for files in the aforementioned directory: passing true will allow them to continue being used, whereas passing false will invalidate them immediately.

Note: This method cannot be called within events.

DispatchEvents Method (CBFS Component)

Reserved, do not use.

Syntax

func (obj *CBFS) DispatchEvents() error

Remarks

Reserved, do not use.

EnableRouteCache Method (CBFS Component)

This method enables the automatic routing of requests to local files.

Syntax

func (obj *CBFS) EnableRouteCache(Location string, Flags int32) error

Remarks

This method enables the automatic routing of requests to files that exist in the directory specified by Location. The Flags parameter is used to specify which kinds of requests should not be routed automatically (see below).

When automatic request routing is enabled, and a file in the virtual drive is opened, the component will immediately check the cache directory to see if a file with the same path and name exists. If such a file is found, all operations will be performed on it directly and the corresponding events will not fire (except for the operations excluded from routing by the specified Flags).

When attempting to find a matching file, the component assumes that the contents of the specified cache directory mirror that of the virtual drive. That is, the cache directory corresponds to the root of the virtual drive, and the files and directory structure are the same in each. If the component fails to find a matching file (or if the operation in question is excluded from routing), then the applicable events fire as usual.

The Flags value should be created by ORing together zero or more of the following flags:

CBFS_ROUTE_FILE_READ_ONLY0x00000001Causes files to be treated as read-only; all write operations will be automatically denied.

CBFS_ROUTE_OPEN_EVENT0x00000020Prevents 'open' requests from being routed automatically.

If set, the OpenFile event will fire as usual when such requests arrive.

Note: This flag is implied if any of the other CBFS_ROUTE_*_EVENT flags are present.

CBFS_ROUTE_CLEANUP_EVENT0x00000040Prevents 'cleanup' requests from being routed automatically.

If set, the CleanupFile event will fire as usual when such requests arrive.

CBFS_ROUTE_CLOSE_EVENT0x00000080Prevents 'close' requests from being routed automatically.

If set, the CloseFile event will fire as usual when such requests arrive.

Note: This flag is implied if any of the other CBFS_ROUTE_*_EVENT flags are present.

CBFS_ROUTE_ENUMERATE_DIRECTORY_EVENT0x00000200Prevents 'enumerate directory' requests from being routed automatically.

If set, the EnumerateDirectory event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_SECURITY_EVENT0x00000400Prevents 'set security' requests from being routed automatically.

If set, the SetFileSecurity event will fire as usual when such requests arrive.

CBFS_ROUTE_GET_SECURITY_EVENT0x00000800Prevents 'get security' requests from being routed automatically.

If set, the GetFileSecurity event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_FILE_ATTRIBUTES_EVENT0x00002000Prevents 'set file attributes' requests from being routed automatically.

If set, the SetFileAttributes event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_FILE_SIZES_EVENT0x00004000Prevents 'set file size' requests from being routed automatically.

If set, the SetFileSize event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_VALID_DATA_LENGTH_EVENT0x00008000Prevents 'set valid data length' requests from being routed automatically.

If set, the OpenFile event will fire as usual when such requests arrive.

CBFS_ROUTE_CREATE_HARD_LINK_EVENT0x00020000Prevents 'create hard link' requests from being routed automatically.

If set, the CreateHardLink event will fire as usual when such requests arrive.

CBFS_ROUTE_QUERY_QUOTA_EVENT0x00040000Prevents 'query quota' requests from being routed automatically.

If set, the QueryQuotas event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_QUOTA_EVENT0x00080000Prevents 'set quota' requests from being routed automatically.

If set, the SetQuotas event will fire as usual when such requests arrive.

CBFS_ROUTE_CAN_FILE_BE_DELETED_EVENT0x00200000Prevents 'can file be deleted' requests from being routed automatically.

If set, the CanFileBeDeleted event will fire as usual when such requests arrive.

CBFS_ROUTE_IS_DIRECTORY_EMPTY_EVENT0x00400000Prevents 'is directory empty' requests from being routed automatically.

If set, the IsDirectoryEmpty event will fire as usual when such requests arrive.

CBFS_ROUTE_RENAME_EVENT0x00800000Prevents 'rename/move' requests from being routed automatically.

If set, the RenameOrMoveFile event will fire as usual when such requests arrive.

Note: This method cannot be called within events.

FileMatchesMask Method (CBFS Component)

This method checks whether a particular file or directory name matches the specified mask.

Syntax

func (obj *CBFS) FileMatchesMask(Mask string, FileName string, CaseSensitive bool) (bool, error)

Remarks

This method checks whether the file or directory name specified by FileName matches Mask; if it does, this method returns true. The CaseSensitive parameter controls whether a case-sensitive match should be performed.

Note: This method does not handle so-called DOS_* wildcards (DOS_STAR, DOS_QM, DOS_DOT). The explanation about the characters can be found in the MSDN article. If you have a mask that includes one of those characters on Windows, you can use the RtlIsNameInExpression function of Windows API.

Note: As the explanation states, "When you do a case-insensitive search and do not provide a translation table, the name is converted to uppercase."

GetDriverStatus Method (CBFS Component)

Retrieves the status of the system driver.

Syntax

func (obj *CBFS) GetDriverStatus(ProductGUID string, Module int32) (int32, error)

Remarks

This method retrieves the status of the system driver module specified by Module. This status can then be used to verify whether it has been properly installed and is ready for use.

The value returned by the method corresponds to the dwCurrentState field of the SERVICE_STATUS structure from the Windows API. It will be one of the following:

MODULE_STATUS_NOT_PRESENT0x00000000The specified module is not present on the system.

MODULE_STATUS_STOPPED0x00000001The specified module is in the Stopped state.

MODULE_STATUS_RUNNING0x00000004The specified module is loaded and running.

ProductGUID is used to distinguish between driver installations performed by different applications. Such information is necessary to guard against unexpected situations such as, e.g., the driver being uninstalled by one application despite other applications still needing it.

The GUID must be specified in so-called "Registry Format" (e.g., "{1FAD0EF2-9A03-4B87-B4BC-645B7035ED90}") with curly braces included.

To ensure proper operation, it is critical that each individual application have its own unique ProductGUID value, and that applications (and their installation scripts) use that value when calling any of the following methods:

The Module parameter specifies which driver module to query the status of. Possible values are:

MODULE_PNP_BUS0x00000001PnP Bus Driver (.sys file).

This module must be installed if the application wishes to make use of Plug-and-Play (PnP) storage features. PnP storage devices are those visible as disks in the Device Manager, and the system treats such storage devices differently from other purely virtual devices.

The filesystem driver must be reinstalled any time this module is added or removed.

MODULE_DRIVER0x00000002Core Product Driver (.sys file).

The product's filesystem driver module provides the core of its functionality; it must be installed for the product to function correctly.

MODULE_HELPER_DLL0x00010000Shell Helper DLL (CBFSShellHelper22.dll)

This module provides supplementary functionality; please refer to the Helper DLL topic for more information.

Note: This module is not applicable when calling the GetDriverStatus method.

This method is available in both the component API and the Installer DLL included with the product; please refer to the Driver Installation topic for more information about the latter.

Note: This method cannot be called within events.

GetEventFilename Method (CBFS Component)

This method retrieves the name of the file or directory, to which the event applies.

Syntax

func (obj *CBFS) GetEventFilename() (string, error)

Remarks

This method can be called within event handlers of events, related to the file or directory operations, to retrieve the name of the file or directory, to which the operation applies. If the query fails or an event does not have an associated filename, this method returns an empty string.

GetHandleCreatorProcessId Method (CBFS Component)

This method retrieves the Id of the process (PID) that opened the specified file handle.

Syntax

func (obj *CBFS) GetHandleCreatorProcessId(HandleInfo int64) (int32, error)

Remarks

This method can be called within certain events to retrieve the Id of the process (PID) that opened the file handle specified by HandleInfo. The value to pass for HandleInfo should be obtained directly from the event. If the query fails, this method returns 0.

Note: PIDs are not unique and may be reused by different processes over time (although in practice, this is uncommon).

Applications cannot use this method to retrieve information about remote processes accessing virtual drives shared on the network. Windows does not provide such information due to the nature of remote access.

Note: This method can be called only within events that expose a HandleInfo parameter, and must be called in the same thread that the event was originally fired on.

GetHandleCreatorProcessName Method (CBFS Component)

This method retrieves the name of the process that opened the specified file handle.

Syntax

func (obj *CBFS) GetHandleCreatorProcessName(HandleInfo int64) (string, error)

Remarks

This method can be called within certain events to retrieve the name of the process that opened the file handle specified by HandleInfo. The value to pass for HandleInfo should be obtained directly from the event. If the query fails, this method returns an empty string.

Applications cannot use this method to retrieve information about remote processes accessing virtual drives shared on the network. Windows does not provide such information due to the nature of remote access.

Note: This method can be called only within events that expose a HandleInfo parameter, and must be called in the same thread that the event was originally fired on.

GetHandleCreatorThreadId Method (CBFS Component)

This method retrieves the Id of the thread that opened the specified file handle.

Syntax

func (obj *CBFS) GetHandleCreatorThreadId(HandleInfo int64) (int32, error)

Remarks

This method can be called within certain events to retrieve the Id of the thread that opened the file handle specified by HandleInfo. The value to pass for HandleInfo should be obtained directly from the event. If the query fails, this method returns 0.

Notes: Thread Ids are not unique and may be reused by different threads over time.

Note: This method can be called only within events that expose a HandleInfo parameter, and must be called in the same thread that the event was originally fired on.

GetHandleCreatorToken Method (CBFS Component)

This method retrieves the security token associated with the process that opened the specified file handle.

Syntax

func (obj *CBFS) GetHandleCreatorToken(HandleInfo int64) (int64, error)

Remarks

This method can be called within certain events to retrieve the security token associated with the process that opened the file handle specified by HandleInfo. The value to pass for HandleInfo should be obtained directly from the event. If the query fails, this method returns INVALID_HANDLE_VALUE.

The security token returned by this method can be passed to the Windows API's GetTokenInformation function to obtain more information about the process. This is particularly useful for implementing custom security checks; please refer to the Security Checks topic for more information.

Note: When applications are finished using the returned security token, they must close it using the Windows API's CloseHandle function.

Network Access Notes

For virtual drives shared on the network, applications may wish to obtain information about the network users accessing it (e.g., account names). Drives can be shared in several modes in Windows, which can affect the information retrievable via the security token this method returns:

  • Authenticated mode, in which case the Helper DLL (which, in general, is responsible for relaying remote drive requests to and from the system driver) will impersonate the network user, allowing that account's actual information to be retrieved.
  • Guest mode, in which case the retrievable information is for the system's GUEST account.
  • Administrative shares (those which exist by default and whose names end with '$'; e.g., C$, ADMIN$, etc.), in which case the retrievable information is for the LOCAL_SYSTEM account.

Note: This method can be called only within events that expose a HandleInfo parameter, and must be called in the same thread that the event was originally fired on.

GetModuleVersion Method (CBFS Component)

Retrieves the version of a given product module.

Syntax

func (obj *CBFS) GetModuleVersion(ProductGUID string, Module int32) (int64, error)

Remarks

This method retrieves the version of the product module specified by Module. The value is returned as a 64-bit integer composed of four 16-bit words that each correspond to a piece of the overall module version. For example, a version of 2.32.6.28 would cause the value 0x000200200006001C to be returned.

If the specified module is not installed, this method returns 0.

ProductGUID is used to distinguish between driver installations performed by different applications. Such information is necessary to guard against unexpected situations such as, e.g., the driver being uninstalled by one application despite other applications still needing it.

The GUID must be specified in so-called "Registry Format" (e.g., "{1FAD0EF2-9A03-4B87-B4BC-645B7035ED90}") with curly braces included.

To ensure proper operation, it is critical that each individual application have its own unique ProductGUID value, and that applications (and their installation scripts) use that value when calling any of the following methods:

The Module parameter specifies which driver module to query the status of. Possible values are:

MODULE_PNP_BUS0x00000001PnP Bus Driver (.sys file).

This module must be installed if the application wishes to make use of Plug-and-Play (PnP) storage features. PnP storage devices are those visible as disks in the Device Manager, and the system treats such storage devices differently from other purely virtual devices.

The filesystem driver must be reinstalled any time this module is added or removed.

MODULE_DRIVER0x00000002Core Product Driver (.sys file).

The product's filesystem driver module provides the core of its functionality; it must be installed for the product to function correctly.

MODULE_HELPER_DLL0x00010000Shell Helper DLL (CBFSShellHelper22.dll)

This module provides supplementary functionality; please refer to the Helper DLL topic for more information.

Note: This module is not applicable when calling the GetDriverStatus method.

This method is available in both the component API and the Installer DLL included with the product; please refer to the Driver Installation topic for more information about the latter.

Note: This method cannot be called within events.

GetOriginatorProcessId Method (CBFS Component)

Retrieves the Id of the process (PID) that initiated the operation.

Syntax

func (obj *CBFS) GetOriginatorProcessId() (int32, error)

Remarks

This method can be called within certain events to retrieve the Id of the process (PID) that initiated the operation. If the query fails, this method returns 0.

Please note that PIDs are not unique, and may be reused by different processes over time (though in practice, this is uncommon).

Applications cannot use this method to retrieve information about remote processes accessing virtual drives shared on the network. Windows does not provide such information due to the nature of remote access.

Note: This method can be called only within events, and it must be called in the same thread that the event was originally fired on. However, it must not be called within events that work with opened files , such as ReadFile and WriteFile, since such events can be initiated by system components (e.g., the cache manager, memory manager, etc.). If applications need the information this method returns during such events, they may do the following:

  1. Call this method within the CreateFile or OpenFile event.
  2. Store the information somewhere, and store a reference to it in the event's HandleContext parameter.
  3. In a later event, access the information via the reference stored in HandleContext.
Please refer to the Contexts topic for more information on how to use events' context parameters.

Note: Renaming and deletion of files is performed after the file is opened. Thus, access checks should be performed during file opening as described above.

GetOriginatorProcessName Method (CBFS Component)

Retrieves the name of the process that initiated the operation.

Syntax

func (obj *CBFS) GetOriginatorProcessName() (string, error)

Remarks

This method can be called within certain events to retrieve the name of the process that initiated the operation. If the query fails, this method returns empty string.

Applications cannot use this method to retrieve information about remote processes accessing virtual drives shared on the network. Windows does not provide such information due to the nature of remote access.

Note: This method can be called only within events, and it must be called in the same thread that the event was originally fired on. However, it must not be called within events that work with opened files , such as ReadFile and WriteFile, since such events can be initiated by system components (e.g., the cache manager, memory manager, etc.). If applications need the information this method returns during such events, they may do the following:

  1. Call this method within the CreateFile or OpenFile event.
  2. Store the information somewhere, and store a reference to it in the event's HandleContext parameter.
  3. In a later event, access the information via the reference stored in HandleContext.
Please refer to the Contexts topic for more information on how to use events' context parameters.

Note: Renaming and deletion of files is performed after the file is opened. Thus, access checks should be performed during file opening as described above.

GetOriginatorThreadId Method (CBFS Component)

Retrieves the Id of the thread that initiated the operation (Windows only).

Syntax

func (obj *CBFS) GetOriginatorThreadId() (int32, error)

Remarks

This method can be called within certain events to retrieve the Id of the thread that initiated the operation. If the query fails, this method returns 0.

Please note that thread Ids are not unique, and may be reused by different threads over time.

Note: This method can be called only within events, and it must be called in the same thread that the event was originally fired on. However, it must not be called within events that work with opened files , such as ReadFile and WriteFile, since such events can be initiated by system components (e.g., the cache manager, memory manager, etc.). If applications need the information this method returns during such events, they may do the following:

  1. Call this method within the CreateFile or OpenFile event.
  2. Store the information somewhere, and store a reference to it in the event's HandleContext parameter.
  3. In a later event, access the information via the reference stored in HandleContext.
Please refer to the Contexts topic for more information on how to use events' context parameters.

Note: Renaming and deletion of files is performed after the file is opened. Thus, access checks should be performed during file opening as described above.

GetOriginatorToken Method (CBFS Component)

Retrieves the security token associated with the process that initiated the operation (Windows only).

Syntax

func (obj *CBFS) GetOriginatorToken() (int64, error)

Remarks

This method can be called within certain events to retrieve the security token associated with the process that initiated the operation. If the query fails, this method returns INVALID_HANDLE_VALUE.

The security token returned by this method can be passed to the Windows API's GetTokenInformation function to obtain more information about the process. This is particularly useful for implementing custom security checks; please refer to the Security Checks topic for more information.

Important: When applications are finished using the returned security token, they must close it using the Windows API's CloseHandle function.

Network Access Notes

For virtual drives shared on the network, applications may wish to obtain information about the network users accessing it (e.g., account names). Drives can be shared in several modes in Windows, which can affect the information retrievable via the security token this method returns:

  • Authenticated mode, in which case the Helper DLL (which, in general, is responsible for relaying remote drive requests to and from the system driver) will impersonate the network user, allowing that account's actual information to be retrieved.
  • Guest mode, in which case the retrievable information is for the system's GUEST account.
  • Administrative shares (those which exist by default and whose names end with '$'; e.g., C$, ADMIN$, etc.), in which case the retrievable information is for the LOCAL_SYSTEM account.

Note: This method can be called only within events, and it must be called in the same thread that the event was originally fired on. However, it must not be called within events that work with opened files , such as ReadFile and WriteFile, since such events can be initiated by system components (e.g., the cache manager, memory manager, etc.). If applications need the information this method returns during such events, they may do the following:

  1. Call this method within the CreateFile or OpenFile event.
  2. Store the information somewhere, and store a reference to it in the event's HandleContext parameter.
  3. In a later event, access the information via the reference stored in HandleContext.
Please refer to the Contexts topic for more information on how to use events' context parameters.

Note: Renaming and deletion of files is performed after the file is opened. Thus, access checks should be performed during file opening as described above.

Initialize Method (CBFS Component)

This method initializes the component.

Syntax

func (obj *CBFS) Initialize(ProductGUID string) error

Remarks

This method initializes the component and must be called each time the application starts before attempting to call any of the component's other methods with the exception of installation-related methods.

ProductGUID is used to distinguish between driver installations performed by different applications. Such information is necessary to guard against unexpected situations such as, e.g., the driver being uninstalled by one application despite other applications still needing it.

The GUID must be specified in so-called "Registry Format" (e.g., "{1FAD0EF2-9A03-4B87-B4BC-645B7035ED90}") with curly braces included.

To ensure proper operation, it is critical that each individual application have its own unique ProductGUID value, and that applications (and their installation scripts) use that value when calling any of the following methods:

If the required driver was not installed using the Install method with the same value of ProductGUID, Initialize will return a ERROR_FILE_NOT_FOUND error (Win32 error code 2).

If the loaded kernel-mode driver is older than the user-mode API, Initialize will return a ERROR_INVALID_KERNEL_INFO_VERSION error (Win32 error code 340). In this situation, an update of the driver using the Install method is required before the component can be used.

Install Method (CBFS Component)

Installs (or upgrades) the product's system drivers and/or the helper DLL (Windows only).

Syntax

func (obj *CBFS) Install(CabFileName string, ProductGUID string, PathToInstall string, ModulesToInstall int32, Flags int32) (int32, error)

Remarks

This method is used to install or upgrade the product's various modules (i.e., the system drivers and the Helper DLL). The ModulesToInstall parameter selects which modules should be installed. If the system must be rebooted to complete the installation process, this method will return a non-zero value indicating which module(s) requested the reboot (out of those initially selected).

Important: To upgrade the product's modules, use only the Install method. Previously installed versions of the modules should not be uninstalled first. Calling the Install method will upgrade the previously installed version.

Please refer to the Driver Installation topic for more information.

CabFileName must be the path of the .cab file containing the product modules. Important: This .cab file must remain on the target system (or be available in some other way) after installation, as it is required for uninstalling the modules from the system.

ProductGUID is used to distinguish between driver installations performed by different applications. Such information is necessary to guard against unexpected situations such as, e.g., the driver being uninstalled by one application despite other applications still needing it.

The GUID must be specified in so-called "Registry Format" (e.g., "{1FAD0EF2-9A03-4B87-B4BC-645B7035ED90}") with curly braces included.

To ensure proper operation, it is critical that each individual application have its own unique ProductGUID value, and that applications (and their installation scripts) use that value when calling any of the following methods:

PathToInstall controls where the modules are installed. Pass empty string (highly recommended) to automatically install them to the appropriate Windows system directory.

ModulesToInstall should contain one or more of the following flags, OR'd together:

MODULE_PNP_BUS0x00000001PnP Bus Driver (.sys file).

This module must be installed if the application wishes to make use of Plug-and-Play (PnP) storage features. PnP storage devices are those visible as disks in the Device Manager, and the system treats such storage devices differently from other purely virtual devices.

The filesystem driver must be reinstalled any time this module is added or removed.

MODULE_DRIVER0x00000002Core Product Driver (.sys file).

The product's filesystem driver module provides the core of its functionality; it must be installed for the product to function correctly.

MODULE_HELPER_DLL0x00010000Shell Helper DLL (CBFSShellHelper22.dll)

This module provides supplementary functionality; please refer to the Helper DLL topic for more information.

Note: This module is not applicable when calling the GetDriverStatus method.

Flags specifies various installation options, and should contain zero or more of the following flags, OR'd together:

INSTALL_REMOVE_OLD_VERSIONS0x00000001Uninstall drivers and helper DLLs from previous component versions (e.g., 2017).

INSTALL_KEEP_START_TYPE0x00000002Keep the driver's current start type setting in the registry.

If this flag is not set (default), the installation logic will reset the driver's start type setting in the Windows registry to the default value. Setting this flag causes the installation logic to preserve the current value, which may be necessary if the user (or the application itself) set it previously.

INSTALL_OVERWRITE_SAME_VERSION0x00000004Install files when their version is the same as the version of already installed files.

If this flag is not set (default), the installation logic will overwrite the existing file only if the version number of the file being installed is larger than the version of the file being overwritten. Setting this flag causes the installation logic to overwrite the file even when it has the same version.

INSTALL_FORCE_SHA1_DRIVERS0x00000008Tell the installer to use SHA1-signed drivers regardless of the OS.

If this flag is not set (default), the installation logic will use SHA1 drivers only on Windows 7. However, some systems based on Windows 8.x, despite supporting SHA2 driver signatures, refuse to install the Plug-n-play drivers signed by Microsoft using SHA256 (error 0xe0000244 is reported). To work around this problem, you may use this flag - a system should accept SHA1-signed drivers then. Note that the flag should be used only as a fallback when the system returns the above-mentioned error code during the regular installation procedure.

This method is available in both the component API and the Installer DLL included with the product; please refer to the Driver Installation topic for more information about the latter.

This method requires administrative rights to execute successfully. If the user account of the process that calls this method doesn't have such rights, the call will fail with an ERROR_PRIVILEGE_NOT_HELD (0x0522) error.

Note: This method cannot be called within events.

IsCBFSVolume Method (CBFS Component)

This method checks whether the specified volume is powered by CBFS.

Syntax

func (obj *CBFS) IsCBFSVolume(VolumePath string) (bool, error)

Remarks

This method checks to see whether the volume specified by VolumePath is powered by CBFS; if it is, this method returns true.

Valid formats for VolumePath include the following:

  • Drive letters, like X:.
  • Volume GUIDs, like Volume{676D0357-A23A-49C3-B433-65AAD72DD282}.

IsIconRegistered Method (CBFS Component)

Checks whether the specified icon is registered (Windows only).

Syntax

func (obj *CBFS) IsIconRegistered(IconId string) (bool, error)

Remarks

This method checks whether an icon with the specified IconId has been registered. If such an icon has been registered, this method returns true; otherwise it returns false.

Icons can be registered using the RegisterIcon method. Please refer to that method's documentation, as well as the Custom Drive Icons topic, for more information.

The Helper DLL must be installed in order for this method to function correctly. Applications can check to see whether the Helper DLL is installed using the GetModuleVersion method, and install it using the Install method if necessary.

MountMedia Method (CBFS Component)

This method mounts media in the virtual drive, making it accessible for reading and writing.

Syntax

func (obj *CBFS) MountMedia(Timeout int32) error

Remarks

After using CreateStorage to create a virtual drive, applications should call this method to "insert storage media" into it. For plug-and-play virtual drives with nonremovable media (see StorageType), this method must be called before AddMountingPoint is called. For all other virtual drives, AddMountingPoint can be called before or after calling this method.

Timeout specifies how many milliseconds the driver will wait for events to execute before canceling the underlying OS requests ; please refer to the Timeouts topic for more information . Valid values are 0, which disables event timeouts, and values greater than or equal to 3000. (Passing a nonzero value less than 3000 will cause this method to fail with an ERROR_IMPLEMENTATION_LIMIT (1292, 0x50C) error code.)

When event timeouts are in effect, event handlers can call ResetTimeout to reset the timer if they require additional time to complete an operation.

Note: A number of properties cannot be changed once media is mounted. Such restrictions are noted in properties' documentation as applicable.

If this method encounters any issues during its execution, it returns an error, and additional information is logged to the Windows system log as described in the Error Reporting and Handling topic.

Note: This method can be called only after creating a virtual drive, and it cannot be called within events.

Virtual Drives, Media, and Mounting Points

In the FUSE component, a mount point is specified as a parameter of the Mount method. Mounting includes both creation of a drive (virtual device) and mounting a media into this device.

The information below applies to the CBFS component.

When applications call the CreateStorage method, a virtual drive is created. Virtual drives are created without any "media" in them (like a CD drive without a CD inserted), and without any mounting points (drive letters, UNC paths, etc.).

After creating a virtual drive, applications should call MountMedia to "insert" virtual storage media into the virtual drive. This call will cause the component's events to start firing; applications must handle these events correctly, or the MountMedia call will fail.

Once media has been mounted in the virtual drive, applications should use the AddMountingPoint method to add one or more mounting points for the virtual drive. These mounting points make the virtual drive, visible to the system and other applications, allowing them to start accessing the contents of the CBFS-based virtual filesystem.

Note that applications can technically call AddMountingPoint before MountMedia (except for plug-and-play virtual drives with non-removable media; see StorageType), but any attempts to access a virtual drive with no media mounted will result in a "no media" error.

NotifyDirectoryChange Method (CBFS Component)

This method notifies the OS that a file or directory has changed.

Syntax

func (obj *CBFS) NotifyDirectoryChange(FileName string, Action int32, NewFileName string, Wait bool) (bool, error)

Remarks

If a file or directory is modified by some means external to the virtual filesystem, this method should be called to notify the OS. Doing so prompts the OS to make any requests necessary to obtain the most up-to-date information, which in turn fires the relevant component events. This method returns either true or false to indicate whether it executed successfully.

Applications must be careful to call this method only when some changes have occurred that the OS has no possibility of detecting on its own. Said another way, applications should not call this method to notify the OS of changes made by invoking filesystem APIs on files or directories in the virtual filesystem; such changes are inherently visible to OS.

For further clarity, the following examples describe scenarios in which NotifyDirectoryChange should and should not be called:

  • DO call NotifyDirectoryChange if, for example, the application is in charge of mapping the contents of some database to its virtual filesystem, and an external process changes the database's contents directly. The OS only knows about the filesystem, it does not know or care about the database contents; thus, the application must notify it that "something has changed".
  • DO NOT call NotifyDirectoryChange if, for example, the application has created a virtual drive Z:, and either it or some other process makes a filesystem call against the virtual drive's contents; for example, DeleteFile("Z:\SomeFile.txt"). The OS detects such a change automatically because it was made through the filesystem APIs.

FileName specifies the path to the file or directory (in the virtual drive) that has changed. This path must not include a mounting point name.

Several files or directories may be referenced in this parameter at once. To specify the exact names, join the paths with CRLF (characters with codes #13 and #10) and pass the final string to FileName. The paths may reference files and directories in different parent directories.

An application also may specify the path with a mask. When passing a mask, only the filename portion of the mask may contain wildcard characters (* and ?). Such mask will denote multiple entries in a single directory. The component will fire the EnumerateDirectory event with the specified mask to collect the names of files and subdirectories, next they will be reported as changed.

Note: When the EnumerateDirectory event is fired, its HandleInfo, DirectoryContext, and HandleContext parameters will be empty because no system-initiated enumeration takes place and the directory is not opened.

Action specifies the type of change so that the OS knows what kind of information it needs to request. Possible values are as follows:

CBFS_NOTIFY_FLAG_ADDED0x00000001The specified file or directory has been created.

CBFS_NOTIFY_FLAG_REMOVED0x00000002The specified file or directory has been removed.

For directories, all handles to files in the directory are immediately closed.

CBFS_NOTIFY_FLAG_MODIFIED0x00000003The specified file or directory has been modified.

For files, use this option when the file's contents have changed. For directories, use this option when a change is made in alternate data streams that belong to the directory.

If a directory is reported as modified, all handles to files in the directory are immediately invalidated.

CBFS_NOTIFY_FLAG_METADATA_MODIFIED0x00000004The timestamp or other attributes of the specified file or directory have been modified.

CBFS_NOTIFY_FLAG_ALLOCATION_SIZE_MODIFIED0x00000005The allocation size for the specified file or directory has been modified.

This option is applicable only if CorrectAllocationSizes is false.

CBFS_NOTIFY_FLAG_MODIFIED_NOT_INVALIDATE0x00000006The specified file or directory has been modified, but handles should not be invalidated.

Note: Using this option can cause other applications to operate using stale data if they keep the specified file or directory open, because they have no way to know about the external changes.

CBFS_NOTIFY_FLAG_RENAMED0x00000007The specified file or directory has been renamed.

This flag updates the internally stored name and does not invalidate existing handles (if any exist).

CBFS_NOTIFY_FLAG_SKIP_LOCKED_FILE0x00001000Ignore the request if the file has locked ranges.

This supplementary flag may be used together with the CBFS_NOTIFY_FLAG_MODIFIED_NOT_INVALIDATE flag to tell the driver that if the file has locked ranges, the notification should be ignored.

NewFileName specifies the new path/name of the file or directory (in the virtual drive) if the rename operation was performed. In other cases, the value is ignored.

Wait specifies whether this method should wait until the OS has finished making all of the requests necessary to handle the notification sent by this method. Passing true will cause this method to block until all requests are complete. Passing false will cause it to send the notification to the OS and return immediately, letting the OS make the necessary requests in the background. In the latter case, this method returns false.

Note: This method can be called only when Active is true. It may be called both within and outside of events; when called within an event, the Wait parameter is ignored and is assumed to be set to false.

If this method encounters any issues during its execution, it returns an error.

RegisterIcon Method (CBFS Component)

Registers an icon that can be displayed as an overlay on the virtual drive in Windows Explorer (Windows only).

Syntax

func (obj *CBFS) RegisterIcon(IconPath string, ProductGUID string, IconId string) (bool, error)

Remarks

This method registers an icon in the file specified by IconPath so that it can later be used to display an overlay on the virtual drive in Windows Explorer. If the system must be rebooted before the icon can be used, this method returns true, otherwise it returns false.

Please note that this method only registers overlay icons; Applications should call the SetIcon and ResetIcon methods to select an icon for display. Please refer to the Custom Drive Icons topic for more information.

IconPath must be the full path and file name of the .ico file whose icon should be registered. The file must exist and remain available in order for the icon to be used until the icon is unregistered using UnregisterIcon.

ProductGUID is used to distinguish between driver installations performed by different applications. Such information is necessary to guard against unexpected situations such as, e.g., the driver being uninstalled by one application despite other applications still needing it.

The GUID must be specified in so-called "Registry Format" (e.g., "{1FAD0EF2-9A03-4B87-B4BC-645B7035ED90}") with curly braces included.

To ensure proper operation, it is critical that each individual application have its own unique ProductGUID value, and that applications (and their installation scripts) use that value when calling any of the following methods:

IconId specifies an identifier that can later be passed to the SetIcon and UnregisterIcon methods. Each registered icon should have a unique IconId value; if a value is passed that is already in use, the existing icon will be removed (by calling UnregisterIcon internally) before the new one is registered.

This method is available in both the component API and the Installer DLL included with the product; please refer to the Driver Installation topic for more information about the latter. The Helper DLL must be installed in order for this method to function correctly. Applications can check to see whether the Helper DLL is installed using the GetModuleVersion method, and install it using the Install method if necessary.

This method requires administrative rights to execute successfully. If the user account of the process that calls this method doesn't have such rights, the call will fail with an ERROR_PRIVILEGE_NOT_HELD (0x0522) error.

Note: This method cannot be called within events.

ReleaseUnusedFiles Method (CBFS Component)

This method instructs the OS to release any files kept open by the cache manager.

Syntax

func (obj *CBFS) ReleaseUnusedFiles() (bool, error)

Remarks

This method instructs the OS to release any files that the system cache manager has kept open, and returns either true or false to indicate whether the files were released successfully. Having the OS release open files can be useful in situations in which operations need to be performed while the filesystem is not in use.

Note: The OS may open additional files during the execution of this method. To guard against this, it is recommended that application use a critical section (or other synchronization object) when calling this method, and use the same one in the OpenFile event handler. Such an approach ensures that the cache manager has no files open after calling this method.

Note: This method can be called only when Active is true. It may be called both within and outside of events; when called within an event, it is executed asynchronously on another thread (causing the call to return immediately, and an ERROR_IO_PENDING result code to be reported to the OS).

RemoveDeniedProcess Method (CBFS Component)

Removes a rule that prevents a process from accessing the virtual drive.

Syntax

func (obj *CBFS) RemoveDeniedProcess(ProcessFileName string, ProcessId int32) error

Remarks

When the ProcessRestrictionsEnabled property is enabled, this method can be used to remove an access rule previously added with the AddDeniedProcess method.

Pass the same values for ProcessFileName and ProcessId as were used to add the rule when AddDeniedProcess was called previously. Please refer to that method's documentation for more information.

Note: This method can be called only when Active is true, and it cannot be called within events.

The methods and properties related to process access lists are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that manipulation and enumeration of process access information occurs in a thread-safe manner.

RemoveGrantedProcess Method (CBFS Component)

Removes a rule that allows a process to access the virtual drive.

Syntax

func (obj *CBFS) RemoveGrantedProcess(ProcessFileName string, ProcessId int32) error

Remarks

When the ProcessRestrictionsEnabled property is enabled, this method can be used to remove an access rule previously added with the AddGrantedProcess method.

Pass the same values for ProcessFileName and ProcessId as were used to add the rule when AddGrantedProcess was called previously. Please refer to that method's documentation for more information.

Note: This method can be called only when Active is true, and it cannot be called within events.

The methods and properties related to process access lists are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that manipulation and enumeration of process access information occurs in a thread-safe manner.

RemoveMountingPoint Method (CBFS Component)

Removes a mounting point for the virtual drive.

Syntax

func (obj *CBFS) RemoveMountingPoint(Index int32, MountingPoint string, Flags int32, AuthenticationId int64) error

Remarks

This method removes a previously-created mounting point for the virtual drive.

Index must be set to the index of an item in the MountingPoint* properties, or to -1 to remove an item based on the other method parameters.

If Index is -1, then the same values must be passed for MountingPoint, Flags, AuthenticationId as were used to add the mounting point when AddMountingPoint was called previously. Please refer to that method's documentation for more information. (If Index is not -1, these parameters are ignored.)

The sgSTGMPDRIVELETTERNOTIFYASYNC; flag may be passed in Flags to send notifications about removal of the mounting point asynchronously. Do not use this flag if the process quits right after a call to this method because asynchronous delivery involves a secondary thread, which will be terminated when the process quits.

To remove a virtual drive, created in a container from the host, set the container's Id via the DockerContainerId configuration setting prior to calling RemoveMountingPoint.

Note: This method cannot be called within events.

The methods and properties related to mounting points are not intended to be used from multiple threads at once. Applications that wish to use said methods and properties from multiple threads are responsible for employing proper thread synchronization techniques to ensure that manipulation and enumeration of mounting points occurs in a thread-safe manner.

ResetIcon Method (CBFS Component)

Resets the virtual drive's icon back to default by deselecting the active overlay icon (Windows only).

Syntax

func (obj *CBFS) ResetIcon() error

Remarks

This method deselects the overlay icon currently in use, thus resetting the virtual drive's icon back to its default state (i.e., displayed without any overlay icons).

Please refer to the SetIcon method, as well as the Custom Drive Icons topic, for more information.

The Helper DLL must be installed in order for this method to function correctly. Applications can check to see whether the Helper DLL is installed using the GetModuleVersion method, and install it using the Install method if necessary.

Note: This method can be called only after creating a virtual drive, and it cannot be called within events.

ResetTimeout Method (CBFS Component)

This method resets the timeout duration for the current event handler.

Syntax

func (obj *CBFS) ResetTimeout(Timeout int32) (bool, error)

Remarks

When event timeouts are being enforced, this method can be called within an event handler to inform the component that request processing is taking longer than expected.

If called successfully, this method returns true, and the current event handler's timeout timer is immediately reset to 0; when it reaches the number of milliseconds specified by Timeout, the driver will cancel the underlying OS request. Please refer to the Timeouts topic for more information.

Passing 0 for Timeout disables the timeout timer for the current event handler, allowing it to take as long as it needs to complete.

Note: When several events are fired for the same file concurrently (if the SerializeAccess property is set to false), and ResetTimeout is called from one of the handlers of these events, this method will reset the timer for all currently executed event handlers.

Note: This method can be called only within events.

RouteToFile Method (CBFS Component)

This method instructs the component to route future requests directly to a given file.

Syntax

func (obj *CBFS) RouteToFile(FileInfo int64, FileName string, Flags int32) (bool, error)

Remarks

This method can be called from within the CreateFile or OpenFile event to instruct the component to route any future requests against the file specified by FileInfo directly to the file at the path specified by FileName instead of firing the corresponding events. The Flags parameter is used to specify which kinds of requests should not be routed automatically (see below).

Pass the value obtained from the CreateFile or OpenFile event's FileInfo parameter for this method's FileInfo parameter.

This method returns either true or false to indicate whether routing was set up successfully. If, after this method is called successfully, the application later wishes for routing to cease, it may do one of the following:

The Flags value should be created by ORing together zero or more of the following flags:

CBFS_ROUTE_FILE_READ_ONLY0x00000001Causes files to be treated as read-only; all write operations will be automatically denied.

CBFS_ROUTE_OPEN_EVENT0x00000020Prevents 'open' requests from being routed automatically.

If set, the OpenFile event will fire as usual when such requests arrive.

Note: This flag is implied if any of the other CBFS_ROUTE_*_EVENT flags are present.

CBFS_ROUTE_CLEANUP_EVENT0x00000040Prevents 'cleanup' requests from being routed automatically.

If set, the CleanupFile event will fire as usual when such requests arrive.

CBFS_ROUTE_CLOSE_EVENT0x00000080Prevents 'close' requests from being routed automatically.

If set, the CloseFile event will fire as usual when such requests arrive.

Note: This flag is implied if any of the other CBFS_ROUTE_*_EVENT flags are present.

CBFS_ROUTE_ENUMERATE_DIRECTORY_EVENT0x00000200Prevents 'enumerate directory' requests from being routed automatically.

If set, the EnumerateDirectory event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_SECURITY_EVENT0x00000400Prevents 'set security' requests from being routed automatically.

If set, the SetFileSecurity event will fire as usual when such requests arrive.

CBFS_ROUTE_GET_SECURITY_EVENT0x00000800Prevents 'get security' requests from being routed automatically.

If set, the GetFileSecurity event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_FILE_ATTRIBUTES_EVENT0x00002000Prevents 'set file attributes' requests from being routed automatically.

If set, the SetFileAttributes event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_FILE_SIZES_EVENT0x00004000Prevents 'set file size' requests from being routed automatically.

If set, the SetFileSize event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_VALID_DATA_LENGTH_EVENT0x00008000Prevents 'set valid data length' requests from being routed automatically.

If set, the OpenFile event will fire as usual when such requests arrive.

CBFS_ROUTE_CREATE_HARD_LINK_EVENT0x00020000Prevents 'create hard link' requests from being routed automatically.

If set, the CreateHardLink event will fire as usual when such requests arrive.

CBFS_ROUTE_QUERY_QUOTA_EVENT0x00040000Prevents 'query quota' requests from being routed automatically.

If set, the QueryQuotas event will fire as usual when such requests arrive.

CBFS_ROUTE_SET_QUOTA_EVENT0x00080000Prevents 'set quota' requests from being routed automatically.

If set, the SetQuotas event will fire as usual when such requests arrive.

CBFS_ROUTE_CAN_FILE_BE_DELETED_EVENT0x00200000Prevents 'can file be deleted' requests from being routed automatically.

If set, the CanFileBeDeleted event will fire as usual when such requests arrive.

CBFS_ROUTE_IS_DIRECTORY_EMPTY_EVENT0x00400000Prevents 'is directory empty' requests from being routed automatically.

If set, the IsDirectoryEmpty event will fire as usual when such requests arrive.

CBFS_ROUTE_RENAME_EVENT0x00800000Prevents 'rename/move' requests from being routed automatically.

If set, the RenameOrMoveFile event will fire as usual when such requests arrive.

Note: This method can be called only within the CreateFile and OpenFile event handlers.

SetIcon Method (CBFS Component)

Selects a registered overlay icon for display on the virtual drive in Windows Explorer (Windows only).

Syntax

func (obj *CBFS) SetIcon(IconId string) error

Remarks

This method selects the overlay icon specified by IconId for display, causing it to be shown on the virtual drive in Windows Explorer. The desired icon must have already been registered using the RegisterIcon method, and the value passed for IconId must match the one passed RegisterIcon at that time.

To switch to a different overlay icon later, call this method again with a different IconId. To reset the virtual drive's icon back to its default state (i.e., displayed without any overlay icons), call the ResetIcon method. Please refer to the Custom Drive Icons topic for more information.

The Helper DLL must be installed in order for this method to function correctly. Applications can check to see whether the Helper DLL is installed using the GetModuleVersion method, and install it using the Install method if necessary.

Note: This method can be called only after creating a virtual drive, and it cannot be called within events. Also, note that the effects of this method only last until the virtual drive is destroyed; applications that always want to have some overlay icon displayed must call this method each time the virtual drive is created.

ShutdownSystem Method (CBFS Component)

Shuts down or reboots the operating system.

Syntax

func (obj *CBFS) ShutdownSystem(ShutdownPrompt string, Timeout int32, ForceCloseApps bool, Reboot bool) (bool, error)

Remarks

This method shuts down or (if Reboot is true) reboots the operating system. If the appropriate privileges cannot be obtained, or if the InitiateSystemShutdown system call returns false, then this method will return false; otherwise, it returns true. This method can be used if the installation or uninstallation function requires the system to be rebooted in order to complete.

ShutdownPrompt, if non-empty, specifies a message that the OS should display to the user for Timeout seconds. If empty string is passed for ShutdownPrompt, no message is displayed and the Timeout parameter's value is ignored.

ForceCloseApps specifies whether the OS should forcefully close all applications. Please keep in mind that forceful closing of applications with unsaved data can lead to data loss.

Reboot specifies whether the OS should reboot (true) or just shut down (false).

This method is available in both the component API and the Installer DLL included with the product; please refer to the Driver Installation topic for more information about the latter.

Note: This method cannot be called within events.

Uninstall Method (CBFS Component)

Uninstalls the product's system drivers and/or helper DLL (Windows only).

Syntax

func (obj *CBFS) Uninstall(CabFileName string, ProductGUID string, InstalledPath string, Flags int32) (int32, error)

Remarks

This method is used to uninstall the product's various modules (i.e., the system drivers and Helper DLL). If the system must be rebooted to complete the uninstallation process, this method will return a non-zero value indicating which module(s) requested the reboot (see Install for possible values).

Important: To upgrade the product's modules, use only the Install method. Previously installed versions of the modules should not be uninstalled first. Calling the Install method will upgrade the previously installed version.

Please refer to the Driver Installation topic for more information.

The same values must be passed for the CabFileName, ProductGUID, and InstalledPath parameters as were passed when Install was called; please refer to its documentation for more information.

Flags specifies which versions of the product's modules should be uninstalled, and should be set by OR'ing together one or more of the following values:

UNINSTALL_VERSION_PREVIOUS0x00000001Uninstall modules from previous product versions.

UNINSTALL_VERSION_CURRENT0x00000002Uninstall modules from the current product version.

UNINSTALL_VERSION_ALL0x00000003Uninstall modules from all product versions.

This method is available in both the component API and the Installer DLL included with the product; please refer to the Driver Installation topic for more information about the latter.

This method requires administrative rights to execute successfully. If the user account of the process that calls this method doesn't have such rights, the call will fail with an ERROR_PRIVILEGE_NOT_HELD (0x0522) error.

Note: This method cannot be called within events.

UnmountMedia Method (CBFS Component)

This method unmounts media from the virtual drive.

Syntax

func (obj *CBFS) UnmountMedia(ForceUnmount bool) error

Remarks

This method unmounts the virtual storage media from the virtual drive. The virtual drive, as well as any existing mounting points, remain present.

If ForceUnmount is true, all open files are forcefully closed. If ForceUnmount is false and open files or directories are detected, this method returns an error.

This method must not be called for plug-and-play virtual drives with nonremovable media (see StorageType); attempting to do so will cause the call will fail with an "access denied" error.

Note: This method can be called only after creating a virtual drive, and it cannot be called within events.

UnregisterIcon Method (CBFS Component)

Unregisters an existing overlay icon (Windows only).

Syntax

func (obj *CBFS) UnregisterIcon(ProductGUID string, IconId string) (bool, error)

Remarks

This method unregisters the overlay icon identified by IconId. If the system must be rebooted to completely remove the icon, this method returns true, otherwise it returns false.

The same values must be passed for the ProductGUID and IconId parameters as were passed when RegisterIcon was called; please refer to its documentation, as well as the Custom Drive Icons topic, for more information.

This method is available in both the component API and the Installer DLL included with the product; please refer to the Driver Installation topic for more information about the latter. The Helper DLL must be installed in order for this method to function correctly. Applications can check to see whether the Helper DLL is installed using the GetModuleVersion method, and install it using the Install method if necessary.

This method requires administrative rights to execute successfully. If the user account of the process that calls this method doesn't have such rights, the call will fail with an ERROR_PRIVILEGE_NOT_HELD (0x0522) error.

Note: This method cannot be called within events.

CanFileBeDeleted Event (CBFS Component)

This event fires when the driver needs to know whether a file or directory can be deleted.

Syntax

// CBFSCanFileBeDeletedEventArgs carries the CBFS CanFileBeDeleted event's parameters.
type CBFSCanFileBeDeletedEventArgs struct {...}

func (args *CBFSCanFileBeDeletedEventArgs) FileName() string
func (args *CBFSCanFileBeDeletedEventArgs) HandleInfo() int64
func (args *CBFSCanFileBeDeletedEventArgs) FileContext() int64
func (args *CBFSCanFileBeDeletedEventArgs) SetFileContext(value int64)

func (args *CBFSCanFileBeDeletedEventArgs) HandleContext() int64
func (args *CBFSCanFileBeDeletedEventArgs) SetHandleContext(value int64)

func (args *CBFSCanFileBeDeletedEventArgs) CanBeDeleted() bool
func (args *CBFSCanFileBeDeletedEventArgs) SetCanBeDeleted(value bool)

func (args *CBFSCanFileBeDeletedEventArgs) ResultCode() int32
func (args *CBFSCanFileBeDeletedEventArgs) SetResultCode(value int32)

// CBFSCanFileBeDeletedEvent defines the signature of the CBFS CanFileBeDeleted event's handler function.
type CBFSCanFileBeDeletedEvent func(sender *CBFS, args *CBFSCanFileBeDeletedEventArgs)

func (obj *CBFS) GetOnCanFileBeDeletedHandler() CBFSCanFileBeDeletedEvent
func (obj *CBFS) SetOnCanFileBeDeletedHandler(handlerFunc CBFSCanFileBeDeletedEvent)

Remarks

This event fires when the driver needs to know whether the file or directory specified by FileName can be deleted.

To handle this event properly, applications must set the CanBeDeleted parameter appropriately.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

Note: The firing of this event does not necessarily mean the specified file or directory will be deleted if CanBeDeleted is set to true. It means only that the OS needs to know whether or not it can be deleted.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

CleanupFile Event (CBFS Component)

This event fires when the OS needs to clean up a file.

Syntax

// CBFSCleanupFileEventArgs carries the CBFS CleanupFile event's parameters.
type CBFSCleanupFileEventArgs struct {...}

func (args *CBFSCleanupFileEventArgs) FileName() string
func (args *CBFSCleanupFileEventArgs) HandleInfo() int64
func (args *CBFSCleanupFileEventArgs) FileContext() int64
func (args *CBFSCleanupFileEventArgs) SetFileContext(value int64)

func (args *CBFSCleanupFileEventArgs) HandleContext() int64
func (args *CBFSCleanupFileEventArgs) SetHandleContext(value int64)

func (args *CBFSCleanupFileEventArgs) ResultCode() int32
func (args *CBFSCleanupFileEventArgs) SetResultCode(value int32)

// CBFSCleanupFileEvent defines the signature of the CBFS CleanupFile event's handler function.
type CBFSCleanupFileEvent func(sender *CBFS, args *CBFSCleanupFileEventArgs)

func (obj *CBFS) GetOnCleanupFileHandler() CBFSCleanupFileEvent
func (obj *CBFS) SetOnCleanupFileHandler(handlerFunc CBFSCleanupFileEvent)

Remarks

This event fires when the OS needs to close a handle to the currently open file specified by FileName. This event differs from CloseFile in that CleanupFile fires immediately when an open handle to the specified file is closed by a process, whereas CloseFile may be fired much later when the OS itself decides that the file can be formally closed. Similar to CloseFile, however, this event will fire only for the last handle to a file if the FireAllOpenCloseEvents property is disabled.

Other events may fire for the file handle in the time between when this event fires and when the CloseFile event fires. For example, system components such as the memory manager or cache manager may cause the ReadFile and WriteFile events to fire.

This event is optional; it is provided to give applications a chance to, for example, free up resources associated with a file before it's formally closed.

When the FireAllOpenCloseEvents is set to false, this event is fired each time the file is closed by the application. When the file is opened and closed by some process multiple times consequently, the event handler can end up being called multiple times seemingly without a match with the OpenFile and CloseFile . However, such behavior is correct. The exact order of Open/Cleanup/Close events cannot be guaranteed because of the way Windows closes files.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

CloseDirectoryEnumeration Event (CBFS Component)

This event fires when the OS is finished enumerating a directory's contents.

Syntax

// CBFSCloseDirectoryEnumerationEventArgs carries the CBFS CloseDirectoryEnumeration event's parameters.
type CBFSCloseDirectoryEnumerationEventArgs struct {...}

func (args *CBFSCloseDirectoryEnumerationEventArgs) DirectoryName() string
func (args *CBFSCloseDirectoryEnumerationEventArgs) DirectoryContext() int64
func (args *CBFSCloseDirectoryEnumerationEventArgs) SetDirectoryContext(value int64)

func (args *CBFSCloseDirectoryEnumerationEventArgs) EnumerationContext() int64
func (args *CBFSCloseDirectoryEnumerationEventArgs) ResultCode() int32
func (args *CBFSCloseDirectoryEnumerationEventArgs) SetResultCode(value int32)

// CBFSCloseDirectoryEnumerationEvent defines the signature of the CBFS CloseDirectoryEnumeration event's handler function.
type CBFSCloseDirectoryEnumerationEvent func(sender *CBFS, args *CBFSCloseDirectoryEnumerationEventArgs)

func (obj *CBFS) GetOnCloseDirectoryEnumerationHandler() CBFSCloseDirectoryEnumerationEvent
func (obj *CBFS) SetOnCloseDirectoryEnumerationHandler(handlerFunc CBFSCloseDirectoryEnumerationEvent)

Remarks

This event fires when the OS is finished enumerating the contents of the directory specified by DirectoryName.

To handle this event properly, applications must release any resources that were allocated for/by the directory enumeration in earlier EnumerateDirectory events.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The DirectoryContext and EnumerationContext parameters are placeholders for application-defined data associated with the directory and enumeration, respectively. Please refer to the Contexts topic for more information about them.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

CloseFile Event (CBFS Component)

This event fires when the OS needs to close a file.

Syntax

// CBFSCloseFileEventArgs carries the CBFS CloseFile event's parameters.
type CBFSCloseFileEventArgs struct {...}

func (args *CBFSCloseFileEventArgs) FileName() string
func (args *CBFSCloseFileEventArgs) PendingDeletion() bool
func (args *CBFSCloseFileEventArgs) HandleInfo() int64
func (args *CBFSCloseFileEventArgs) FileContext() int64
func (args *CBFSCloseFileEventArgs) SetFileContext(value int64)

func (args *CBFSCloseFileEventArgs) HandleContext() int64
func (args *CBFSCloseFileEventArgs) SetHandleContext(value int64)

func (args *CBFSCloseFileEventArgs) ResultCode() int32
func (args *CBFSCloseFileEventArgs) SetResultCode(value int32)

// CBFSCloseFileEvent defines the signature of the CBFS CloseFile event's handler function.
type CBFSCloseFileEvent func(sender *CBFS, args *CBFSCloseFileEventArgs)

func (obj *CBFS) GetOnCloseFileHandler() CBFSCloseFileEvent
func (obj *CBFS) SetOnCloseFileHandler(handlerFunc CBFSCloseFileEvent)

Remarks

This event fires when the OS needs to close the file specified by FileName. If the FireAllOpenCloseEvents property is disabled, this event will fire only after the last handle to the specified file is closed.

To handle this event properly, applications can (if necessary/applicable) check to see if any other handles are open for the file, and if not, close whatever backend resources are currently open for it.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The PendingDeletion parameter indicates whether the file should be deleted; if it's true, the DeleteFile event will fire immediately after this event. The application may delete the file from either event handler.

If an application uses some object to store user context, uses FileContext to store the reference to this object, and deletes an object referenced in FileContext, the pointer stored in FileContext becomes invalid. In this scenario, if the PendingDeletion parameter is true, the DeleteFile event will fire with the invalid value in its FileContext parameter. The solution to this issue is to inspect the value of the DeleteFile parameter and if it is true, postpone deletion of the object referenced in FileContext until the DeleteFile event. Alternatively, an event handler may set FileContext to an empty value, in which case, a DeleteFile event handler will receive that empty value as a file context.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

Note: The OS sends a file close request asynchronously, which is later than a process closes its handle(s) to the opened file. Because of this, the result code returned by the event handler does not get back to the process that closed the file handle.

CloseHardLinksEnumeration Event (CBFS Component)

This event fires when the OS is finished enumerating a file's hard links.

Syntax

// CBFSCloseHardLinksEnumerationEventArgs carries the CBFS CloseHardLinksEnumeration event's parameters.
type CBFSCloseHardLinksEnumerationEventArgs struct {...}

func (args *CBFSCloseHardLinksEnumerationEventArgs) FileName() string
func (args *CBFSCloseHardLinksEnumerationEventArgs) HandleInfo() int64
func (args *CBFSCloseHardLinksEnumerationEventArgs) FileContext() int64
func (args *CBFSCloseHardLinksEnumerationEventArgs) SetFileContext(value int64)

func (args *CBFSCloseHardLinksEnumerationEventArgs) HandleContext() int64
func (args *CBFSCloseHardLinksEnumerationEventArgs) SetHandleContext(value int64)

func (args *CBFSCloseHardLinksEnumerationEventArgs) EnumerationContext() int64
func (args *CBFSCloseHardLinksEnumerationEventArgs) ResultCode() int32
func (args *CBFSCloseHardLinksEnumerationEventArgs) SetResultCode(value int32)

// CBFSCloseHardLinksEnumerationEvent defines the signature of the CBFS CloseHardLinksEnumeration event's handler function.
type CBFSCloseHardLinksEnumerationEvent func(sender *CBFS, args *CBFSCloseHardLinksEnumerationEventArgs)

func (obj *CBFS) GetOnCloseHardLinksEnumerationHandler() CBFSCloseHardLinksEnumerationEvent
func (obj *CBFS) SetOnCloseHardLinksEnumerationHandler(handlerFunc CBFSCloseHardLinksEnumerationEvent)

Remarks

This event fires when the OS is finished enumerating the hard links of the file specified by FileName.

This event needs to be handled only if the UseHardLinks property is enabled. To handle this event properly, applications must release any resources that were allocated for/by the hard link enumeration in earlier EnumerateHardLinks events.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext, HandleContext, and EnumerationContext parameters are placeholders for application-defined data associated with the file, specific handle, and enumeration, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

CloseNamedStreamsEnumeration Event (CBFS Component)

This event fires when the OS is finished enumerating a file's named streams.

Syntax

// CBFSCloseNamedStreamsEnumerationEventArgs carries the CBFS CloseNamedStreamsEnumeration event's parameters.
type CBFSCloseNamedStreamsEnumerationEventArgs struct {...}

func (args *CBFSCloseNamedStreamsEnumerationEventArgs) FileName() string
func (args *CBFSCloseNamedStreamsEnumerationEventArgs) HandleInfo() int64
func (args *CBFSCloseNamedStreamsEnumerationEventArgs) FileContext() int64
func (args *CBFSCloseNamedStreamsEnumerationEventArgs) SetFileContext(value int64)

func (args *CBFSCloseNamedStreamsEnumerationEventArgs) HandleContext() int64
func (args *CBFSCloseNamedStreamsEnumerationEventArgs) SetHandleContext(value int64)

func (args *CBFSCloseNamedStreamsEnumerationEventArgs) EnumerationContext() int64
func (args *CBFSCloseNamedStreamsEnumerationEventArgs) ResultCode() int32
func (args *CBFSCloseNamedStreamsEnumerationEventArgs) SetResultCode(value int32)

// CBFSCloseNamedStreamsEnumerationEvent defines the signature of the CBFS CloseNamedStreamsEnumeration event's handler function.
type CBFSCloseNamedStreamsEnumerationEvent func(sender *CBFS, args *CBFSCloseNamedStreamsEnumerationEventArgs)

func (obj *CBFS) GetOnCloseNamedStreamsEnumerationHandler() CBFSCloseNamedStreamsEnumerationEvent
func (obj *CBFS) SetOnCloseNamedStreamsEnumerationHandler(handlerFunc CBFSCloseNamedStreamsEnumerationEvent)

Remarks

This event fires when the OS is finished enumerating the named streams of the file specified by FileName.

This event needs to be handled only if the UseAlternateDataStreams property is enabled. To handle this event properly, applications must release any resources that were allocated for/by the named stream enumeration in earlier EnumerateNamedStreams events.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext, HandleContext, and EnumerationContext parameters are placeholders for application-defined data associated with the file, specific handle, and enumeration, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

CloseQuotasEnumeration Event (CBFS Component)

This event fires when the OS is finished reading or updating quota information.

Syntax

// CBFSCloseQuotasEnumerationEventArgs carries the CBFS CloseQuotasEnumeration event's parameters.
type CBFSCloseQuotasEnumerationEventArgs struct {...}

func (args *CBFSCloseQuotasEnumerationEventArgs) EnumerationContext() int64
func (args *CBFSCloseQuotasEnumerationEventArgs) ResultCode() int32
func (args *CBFSCloseQuotasEnumerationEventArgs) SetResultCode(value int32)

// CBFSCloseQuotasEnumerationEvent defines the signature of the CBFS CloseQuotasEnumeration event's handler function.
type CBFSCloseQuotasEnumerationEvent func(sender *CBFS, args *CBFSCloseQuotasEnumerationEventArgs)

func (obj *CBFS) GetOnCloseQuotasEnumerationHandler() CBFSCloseQuotasEnumerationEvent
func (obj *CBFS) SetOnCloseQuotasEnumerationHandler(handlerFunc CBFSCloseQuotasEnumerationEvent)

Remarks

This event fires when the OS is finished reading or updating quota information.

This event only needs to be handled if the UseDiskQuotas property is enabled. To handle this event properly, applications must release any resources that were allocated for/by the quota enumeration in earlier QueryQuotas or SetQuotas events.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The EnumerationContext parameter is a placeholder for application-defined data associated with the enumeration. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

CreateFile Event (CBFS Component)

This event fires when the OS wants to create a file or directory.

Syntax

// CBFSCreateFileEventArgs carries the CBFS CreateFile event's parameters.
type CBFSCreateFileEventArgs struct {...}

func (args *CBFSCreateFileEventArgs) FileName() string
func (args *CBFSCreateFileEventArgs) DesiredAccess() int32
func (args *CBFSCreateFileEventArgs) Attributes() int32
func (args *CBFSCreateFileEventArgs) ShareMode() int32
func (args *CBFSCreateFileEventArgs) NTCreateDisposition() int32
func (args *CBFSCreateFileEventArgs) NTDesiredAccess() int32
func (args *CBFSCreateFileEventArgs) FileInfo() int64
func (args *CBFSCreateFileEventArgs) HandleInfo() int64
func (args *CBFSCreateFileEventArgs) FileContext() int64
func (args *CBFSCreateFileEventArgs) SetFileContext(value int64)

func (args *CBFSCreateFileEventArgs) HandleContext() int64
func (args *CBFSCreateFileEventArgs) SetHandleContext(value int64)

func (args *CBFSCreateFileEventArgs) ResultCode() int32
func (args *CBFSCreateFileEventArgs) SetResultCode(value int32)

// CBFSCreateFileEvent defines the signature of the CBFS CreateFile event's handler function.
type CBFSCreateFileEvent func(sender *CBFS, args *CBFSCreateFileEventArgs)

func (obj *CBFS) GetOnCreateFileHandler() CBFSCreateFileEvent
func (obj *CBFS) SetOnCreateFileHandler(handlerFunc CBFSCreateFileEvent)

Remarks

This event fires when the OS wants to create a file or directory named FileName using the creation options reflected in Attributes. If the FireAllOpenCloseEvents property is disabled, this event will fire only when the first handle to the specified file or directory is opened. To determine whether the request is for a file or a directory, compare Attributes against the FILE_SYS_ATTR_DIRECTORY constant, as follows: // Check whether the request is for a file or a directory. bool isDirectory = Attributes & FILE_SYS_ATTR_DIRECTORY == FILE_SYS_ATTR_DIRECTORY;

If the UseAlternateDataStreams property is enabled, this event also fires any time the OS wants to create a named datastream in a file. Such requests are distinguished by the presence of a colon (:) in the FileName value; the text before the colon is the name of the file itself, and the text after the colon is the name of the stream to create.

To handle this event properly, applications should (at least) perform any actions needed to create and/or open the requested file, directory, or named stream in their backend storage. Applications are also responsible for validating the access rights of the process that initiated the request before performing the requested operation; please refer to the Security Checks topic for more information.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

If an existing local file corresponds to the virtual one specified by FileName, the application may call RouteToFile to have the component route future requests directly to that file. This event's FileInfo value must be passed to RouteToFile to request routing to be configured successfully.

In certain cases, a request to open an existing file may unexpectedly be surfaced through this event instead of through OpenFile. Normally, this will not happen, as the OS already knows which files exist (based on information obtained via GetFileInfo/EnumerateDirectory) before it sends the create or open request. If, however, a file is created externally, a rare condition may occur in which said file exists but is not known to the OS or the virtual filesystem yet. In such cases, the application must decide how to handle the unexpected CreateFile event; it can either truncate the existing file, or return the ERROR_ALREADY_EXISTS error code via ResultCode.

If an original call to CreateFile() or a similar Windows API function included security attributes, the SetFileSecurity event will immediately follow this CreateFile event, and the mentioned security attributes will be passed via SetFileSecurity.

The DesiredAccess parameter specifies the access mode desired by the process that initiated the request; it may contain one or more of the following access flags:

DESIRED_ACCESS_FILE_LIST_DIRECTORY0x00000001For a directory, the right to list the contents of the directory.

DESIRED_ACCESS_FILE_READ_DATA0x00000001For a file object, the right to read the corresponding file data.

For a directory object, the right to read the corresponding directory data.

DESIRED_ACCESS_FILE_ADD_FILE0x00000002For a directory, the right to create a file in the directory.

DESIRED_ACCESS_FILE_WRITE_DATA0x00000002For a file object, the right to write data to the file.

For a directory object, the right to create a file in the directory

DESIRED_ACCESS_FILE_ADD_SUBDIRECTORY0x00000004For a directory, the right to create a subdirectory.

DESIRED_ACCESS_FILE_APPEND_DATA0x00000004For a file object, the right to append data to the file.

(For local files, write operations will not overwrite existing data if this flag is specified without FILE_WRITE_DATA.) For a directory object, the right to create a subdirectory (FILE_ADD_SUBDIRECTORY).

DESIRED_ACCESS_FILE_READ_EA0x00000008The right to read extended file attributes.

DESIRED_ACCESS_FILE_WRITE_EA0x00000010The right to write extended file attributes.

DESIRED_ACCESS_FILE_EXECUTE0x00000020For a native code file, the right to execute the file.

This access right given to scripts may cause the script to be executable, depending on the script interpreter.

DESIRED_ACCESS_FILE_DELETE_CHILD0x00000040For a directory, the right to delete a directory and all the files it contains, including read-only files.

DESIRED_ACCESS_FILE_READ_ATTRIBUTES0x00000080The right to read file attributes.

DESIRED_ACCESS_FILE_WRITE_ATTRIBUTES0x00000100The right to write file attributes.

DESIRED_ACCESS_READ_CONTROL0x00020000The right to read the information in the file or directory object's security descriptor.

This does not include the information in the SACL.

DESIRED_ACCESS_STANDARD_RIGHTS_READ0x00020000Includes READ_CONTROL, which is the right to read the information in the file or directory object's security descriptor.

This does not include the information in the SACL.

DESIRED_ACCESS_STANDARD_RIGHTS_WRITE0x00020000Same as STANDARD_RIGHTS_READ

DESIRED_ACCESS_STANDARD_RIGHTS_EXECUTE0x00020000Same as STANDARD_RIGHTS_READ

DESIRED_ACCESS_SYNCHRONIZE0x00100000The right to use the object for synchronization.

This enables a thread to wait until the object is in the signaled state. Some object types do not support this access right.

DESIRED_ACCESS_FILE_ALL_ACCESS0x001F01FFAll possible access rights for a file.

DESIRED_ACCESS_FILE_GENERIC_READ0x00120089A combinarion of flags that allow reading of the file.

Note: Don't match received values against this flag. Instead, use flags that specify the rights that you want to verify or add/remove.

DESIRED_ACCESS_FILE_GENERIC_WRITE0x00120116A combinarion of flags that allow modifications to the file.

Note: Don't match received values against this flag. Instead, use flags that specify the rights that you want to verify or add/remove.

DESIRED_ACCESS_FILE_GENERIC_EXECUTE0x001200A0A combinarion of flags that allow execution of the file.

Note: Don't match received values against this flag. Instead, use flags that specify the rights that you want to verify or add/remove.

This value may differ from the one originally passed to the OS; the component alters it in the following cases:

  • The DELETE flag is added if the requested CreateDisposition is FILE_SUPERSEDE.
  • The FILE_WRITE_DATA, FILE_WRITE_EA, and FILE_WRITE_ATTRIBUTES flags are added if the requested CreateDisposition is FILE_OVERWRITE or FILE_OVERWRITE_IF.
The original CreateDisposition and DesiredAccess values are exposed through the NTCreateDisposition and NTDesiredAccess parameters.

Note: These values are in NT format; that is, as expected by the Windows API's ZwCreateFile function.

The Attributes parameter contains file attributes; it may contain one or more of the following attributes:

FILE_SYS_ATTR_READ_ONLY0x00000001The file is read-only.

Applications can read the file, but cannot write to it or delete it. This attribute is not honored on directories.

FILE_SYS_ATTR_HIDDEN0x00000002The file or directory is hidden.

The file is not included in an ordinary directory listing.

FILE_SYS_ATTR_SYSTEM0x00000004A file or directory that the operating system uses a part of, or uses exclusively.

FILE_SYS_ATTR_DIRECTORY0x00000010The entry is a directory.

FILE_SYS_ATTR_ARCHIVE0x00000020The entry is an archive file or directory.

Applications typically use this attribute to mark files for backup or removal.

FILE_SYS_ATTR_NORMAL0x00000080A file doesn't have other attributes set.

This attribute is valid only when used alone.

FILE_SYS_ATTR_TEMPORARY0x00000100A file that is being used for temporary storage.

File systems avoid writing data back to mass storage if sufficient cache memory is available, because typically, an application deletes a temporary file after the handle is closed. In that scenario, the system can entirely avoid writing the data. Otherwise, the data are written after the handle is closed.

FILE_SYS_ATTR_SPARSE_FILE0x00000200A file that is a sparse file.

FILE_SYS_ATTR_REPARSE_POINT0x00000400A file that is a reparse point or a symbolic link.

FILE_SYS_ATTR_COMPRESSED0x00000800A file or directory that is compressed.

For a file, all of the data in the file are compressed. For a directory, compression is the default for newly created files and subdirectories. A filesystem implementation can make use of this attribute by setting the SupportCompressedAttribute property to true and then properly handling the GetFileInfo, EnumerateDirectory, and SetFileAttributes events.

FILE_SYS_ATTR_OFFLINE0x00001000The data of a file are not available immediately.

This attribute indicates that the file data are physically moved to offline storage.

FILE_SYS_ATTR_NOT_CONTENT_INDEXED0x00002000The file or directory is not to be indexed by the content indexing service.

FILE_SYS_ATTR_ENCRYPTED0x00004000A file or directory that is encrypted.

For a file, all data streams in the file are encrypted. For a directory, encryption is the default for newly created files and subdirectories.

Note: This flag is used by NTFS and the OS sends undocumented requests to the filesystem based on this flag. The flag should not be used for files in custom filesystem implementations.

FILE_SYS_ATTR_VIRTUAL0x00010000Reserved.

Note: This flag is reserved by the OS and should not be used for files in custom filesystem implementations.

FILE_SYS_ATTR_RECALL_ON_OPEN0x00040000The file or directory has no physical representation on the local system; the item is virtual.

Opening the item will be more expensive than normal (e.g., it will cause at least some of it to be fetched from a remote store). This flag is reported by filesystems during directory enumerations.

Attributes specifies both the attributes and create/open options for the new file. Some options, such as FILE_FLAG_SEQUENTIAL_SCAN, FILE_FLAG_WRITE_THROUGH, and FILE_FLAG_RANDOM_ACCESS, may be useful for applications that wish to fine-tune their performance. For example, such information could be used to decide whether it is necessary to locally cache some amount of data that is stored remotely.

The ShareMode parameter specifies the access sharing mode desired by the process that initiated the request; it may contain zero or more of the following share mode flags:

FILE_SYS_SHARE_READ0x00000001Enables subsequent open operations on a file to request read access.

Otherwise, other processes cannot open the file if they request read access. If this flag is not specified, but the file has been opened for read access, file creation or opening fails.

FILE_SYS_SHARE_WRITE0x00000002Enables subsequent open operations on a file to request write access.

Otherwise, other processes cannot open the file if they request write access. If this flag is not specified, but the file has been opened for write access or has a file mapping with write access, file creation or opening fails.

FILE_SYS_SHARE_DELETE0x00000004Enables subsequent open operations on a file to request delete access.

Otherwise, other processes cannot open the file if they request delete access. If this flag is not specified, but the file has been opened for delete access, the function fails.

Note: Delete access allows both delete and rename operations.

Please refer to the Windows API's ZwCreateFile function for detailed information about possible values for the DesiredAccess, Attributes, ShareMode, NTCreateDisposition, and NTDesiredAccess parameters.

The FileInfo parameter carries a handle to an object with information about the file. As mentioned earlier, this value should be used if the application chooses to call the RouteToFile method.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

CreateHardLink Event (CBFS Component)

This event fires when the OS wants to create a new hard link to an existing file.

Syntax

// CBFSCreateHardLinkEventArgs carries the CBFS CreateHardLink event's parameters.
type CBFSCreateHardLinkEventArgs struct {...}

func (args *CBFSCreateHardLinkEventArgs) FileName() string
func (args *CBFSCreateHardLinkEventArgs) LinkName() string
func (args *CBFSCreateHardLinkEventArgs) HandleInfo() int64
func (args *CBFSCreateHardLinkEventArgs) FileContext() int64
func (args *CBFSCreateHardLinkEventArgs) SetFileContext(value int64)

func (args *CBFSCreateHardLinkEventArgs) HandleContext() int64
func (args *CBFSCreateHardLinkEventArgs) SetHandleContext(value int64)

func (args *CBFSCreateHardLinkEventArgs) ResultCode() int32
func (args *CBFSCreateHardLinkEventArgs) SetResultCode(value int32)

// CBFSCreateHardLinkEvent defines the signature of the CBFS CreateHardLink event's handler function.
type CBFSCreateHardLinkEvent func(sender *CBFS, args *CBFSCreateHardLinkEventArgs)

func (obj *CBFS) GetOnCreateHardLinkHandler() CBFSCreateHardLinkEvent
func (obj *CBFS) SetOnCreateHardLinkHandler(handlerFunc CBFSCreateHardLinkEvent)

Remarks

This event fires when the OS wants to create a new hard link that points to the existing file specified by FileName. The LinkName parameter specifies the absolute path (including filename) of the link to be created.

This event needs to be handled only if the UseHardLinks property is enabled. To handle this event properly, applications should perform any actions needed to create an additional hard link to the specified file in their backend storage.

Please refer to the Hard Links topic for more information.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

DeleteFile Event (CBFS Component)

This event fires when the OS needs to delete a file or directory.

Syntax

// CBFSDeleteFileEventArgs carries the CBFS DeleteFile event's parameters.
type CBFSDeleteFileEventArgs struct {...}

func (args *CBFSDeleteFileEventArgs) FileName() string
func (args *CBFSDeleteFileEventArgs) FileContext() int64
func (args *CBFSDeleteFileEventArgs) SetFileContext(value int64)

func (args *CBFSDeleteFileEventArgs) ResultCode() int32
func (args *CBFSDeleteFileEventArgs) SetResultCode(value int32)

// CBFSDeleteFileEvent defines the signature of the CBFS DeleteFile event's handler function.
type CBFSDeleteFileEvent func(sender *CBFS, args *CBFSDeleteFileEventArgs)

func (obj *CBFS) GetOnDeleteFileHandler() CBFSDeleteFileEvent
func (obj *CBFS) SetOnDeleteFileHandler(handlerFunc CBFSDeleteFileEvent)

Remarks

This event fires when the OS has decided to delete the file or directory specified by FileName.

To handle this event properly, applications must perform any actions needed to delete the specified file or directory from their backend storage. If the UseHardLinks property is enabled, a file's data should be deleted only when its last hard link has been deleted; please refer to the Hard Links topic for more information.

Note:

  • A deletion cannot be canceled from this event; applications that wish to prevent a deletion must do so via the CanFileBeDeleted event.
  • This event fires immediately after the last CloseFile event. If the application disposes of the FileContext in the CloseFile event handler, it will be invalid when this event fires. The CloseFile event includes a DeleteFile parameter that helps address this situation.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The FileContext parameter is a placeholder for application-defined data associated with the file. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

DeleteReparsePoint Event (CBFS Component)

This event fires when the OS wants to delete a reparse point from a file or directory.

Syntax

// CBFSDeleteReparsePointEventArgs carries the CBFS DeleteReparsePoint event's parameters.
type CBFSDeleteReparsePointEventArgs struct {...}

func (args *CBFSDeleteReparsePointEventArgs) FileName() string
func (args *CBFSDeleteReparsePointEventArgs) ReparseBuffer() []byte
func (args *CBFSDeleteReparsePointEventArgs) ReparseBufferLength() int32
func (args *CBFSDeleteReparsePointEventArgs) HandleInfo() int64
func (args *CBFSDeleteReparsePointEventArgs) FileContext() int64
func (args *CBFSDeleteReparsePointEventArgs) SetFileContext(value int64)

func (args *CBFSDeleteReparsePointEventArgs) HandleContext() int64
func (args *CBFSDeleteReparsePointEventArgs) SetHandleContext(value int64)

func (args *CBFSDeleteReparsePointEventArgs) ResultCode() int32
func (args *CBFSDeleteReparsePointEventArgs) SetResultCode(value int32)

// CBFSDeleteReparsePointEvent defines the signature of the CBFS DeleteReparsePoint event's handler function.
type CBFSDeleteReparsePointEvent func(sender *CBFS, args *CBFSDeleteReparsePointEventArgs)

func (obj *CBFS) GetOnDeleteReparsePointHandler() CBFSDeleteReparsePointEvent
func (obj *CBFS) SetOnDeleteReparsePointHandler(handlerFunc CBFSDeleteReparsePointEvent)

Remarks

This event fires when the OS wants to delete a reparse point from the file or directory specified by FileName.

This event needs to be handled only if the UseReparsePoints property is enabled.

Note: NFS sharing makes use of reparse points.

To handle this event properly, applications must delete the reparse point data (and tag) stored previously for the specified file or directory. Any other actions taken in an earlier SetReparsePoint event also should be reversed appropriately.

Note: The file or directory itself should not be deleted.

Please refer to the Reparse Points topic for more information.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The existing reparse point data are provided in this event as a convenience for use-cases that wish to utilize it.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

Ejected Event (CBFS Component)

Fires when the media and virtual drive have been ejected (Windows only).

Syntax

// CBFSEjectedEventArgs carries the CBFS Ejected event's parameters.
type CBFSEjectedEventArgs struct {...}

func (args *CBFSEjectedEventArgs) ResultCode() int32
func (args *CBFSEjectedEventArgs) SetResultCode(value int32)

// CBFSEjectedEvent defines the signature of the CBFS Ejected event's handler function.
type CBFSEjectedEvent func(sender *CBFS, args *CBFSEjectedEventArgs)

func (obj *CBFS) GetOnEjectedHandler() CBFSEjectedEvent
func (obj *CBFS) SetOnEjectedHandler(handlerFunc CBFSEjectedEvent)

Remarks

This event fires when a user has ejected the media and virtual drive using the Eject command in Windows Explorer.

For ejection via the system notification area (tray) to work correctly, the StorageType property must be set to STGT_DISK_PNP, and the StorageCharacteristics property must include ejection-related flags.

This event is optional; it is provided to give applications a chance to, e.g., free up resources associated with the virtual drive. Since the virtual drive has already been destroyed by the time this event fires, applications must not call UnmountMedia or DeleteStorage (the latter is called automatically with its ForceUnmount parameter set to true) .

The ResultCode parameter will always be initially set to the result of a storage deletion operation. The expected value is 0. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource isn't available, security checks failed, etc.), set it to a non-zero value to report an appropriate error. Note that as ejection has already occured, this non-zero value will not have effect on the media's state. Please refer to the Error Reporting and Handling topic for more information.

EnumerateDirectory Event (CBFS Component)

This event fires when the OS wants to enumerate a directory's contents.

Syntax

// CBFSEnumerateDirectoryEventArgs carries the CBFS EnumerateDirectory event's parameters.
type CBFSEnumerateDirectoryEventArgs struct {...}

func (args *CBFSEnumerateDirectoryEventArgs) DirectoryName() string
func (args *CBFSEnumerateDirectoryEventArgs) Mask() string
func (args *CBFSEnumerateDirectoryEventArgs) CaseSensitive() bool
func (args *CBFSEnumerateDirectoryEventArgs) Restart() bool
func (args *CBFSEnumerateDirectoryEventArgs) RequestedInfo() int32
func (args *CBFSEnumerateDirectoryEventArgs) FileFound() bool
func (args *CBFSEnumerateDirectoryEventArgs) SetFileFound(value bool)

func (args *CBFSEnumerateDirectoryEventArgs) FileName() string
func (args *CBFSEnumerateDirectoryEventArgs) SetFileName(value string)

func (args *CBFSEnumerateDirectoryEventArgs) ShortFileName() string
func (args *CBFSEnumerateDirectoryEventArgs) SetShortFileName(value string)

func (args *CBFSEnumerateDirectoryEventArgs) CreationTime() time.Time
func (args *CBFSEnumerateDirectoryEventArgs) SetCreationTime(value time.Time)

func (args *CBFSEnumerateDirectoryEventArgs) LastAccessTime() time.Time
func (args *CBFSEnumerateDirectoryEventArgs) SetLastAccessTime(value time.Time)

func (args *CBFSEnumerateDirectoryEventArgs) LastWriteTime() time.Time
func (args *CBFSEnumerateDirectoryEventArgs) SetLastWriteTime(value time.Time)

func (args *CBFSEnumerateDirectoryEventArgs) ChangeTime() time.Time
func (args *CBFSEnumerateDirectoryEventArgs) SetChangeTime(value time.Time)

func (args *CBFSEnumerateDirectoryEventArgs) Size() int64
func (args *CBFSEnumerateDirectoryEventArgs) SetSize(value int64)

func (args *CBFSEnumerateDirectoryEventArgs) AllocationSize() int64
func (args *CBFSEnumerateDirectoryEventArgs) SetAllocationSize(value int64)

func (args *CBFSEnumerateDirectoryEventArgs) FileId() int64
func (args *CBFSEnumerateDirectoryEventArgs) SetFileId(value int64)

func (args *CBFSEnumerateDirectoryEventArgs) Attributes() int64
func (args *CBFSEnumerateDirectoryEventArgs) SetAttributes(value int64)

func (args *CBFSEnumerateDirectoryEventArgs) ReparseTag() int64
func (args *CBFSEnumerateDirectoryEventArgs) SetReparseTag(value int64)

func (args *CBFSEnumerateDirectoryEventArgs) HandleInfo() int64
func (args *CBFSEnumerateDirectoryEventArgs) DirectoryContext() int64
func (args *CBFSEnumerateDirectoryEventArgs) SetDirectoryContext(value int64)

func (args *CBFSEnumerateDirectoryEventArgs) HandleContext() int64
func (args *CBFSEnumerateDirectoryEventArgs) SetHandleContext(value int64)

func (args *CBFSEnumerateDirectoryEventArgs) EnumerationContext() int64
func (args *CBFSEnumerateDirectoryEventArgs) SetEnumerationContext(value int64)

func (args *CBFSEnumerateDirectoryEventArgs) ResultCode() int32
func (args *CBFSEnumerateDirectoryEventArgs) SetResultCode(value int32)

// CBFSEnumerateDirectoryEvent defines the signature of the CBFS EnumerateDirectory event's handler function.
type CBFSEnumerateDirectoryEvent func(sender *CBFS, args *CBFSEnumerateDirectoryEventArgs)

func (obj *CBFS) GetOnEnumerateDirectoryHandler() CBFSEnumerateDirectoryEvent
func (obj *CBFS) SetOnEnumerateDirectoryHandler(handlerFunc CBFSEnumerateDirectoryEvent)

Remarks

This event fires when the OS wants to enumerate the contents of the directory specified by DirectoryName (which will have been opened via OpenFile).

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must return information about each directory entry (e.g., file, subdirectory, link) that matches the specified Mask.

For each matching entry found, set FileFound to true, inspect the RequestedInfo parameter for the types of information required, and supply the entry's information using the following parameters:

  • FileName: Set to the name of the entry (not including its path).
    • The length of the returned name must not exceed the value of the MaxFileNameLength property.
  • ShortFileName: If the UseShortFileNames property is enabled, set to the short (8.3) name of the entry.
    • The short name must adhere to the 8.3 name format; please refer to the Short File Names topic for more information.
  • CreationTime, LastAccessTime, LastWriteTime, ChangeTime: Set to the entry's corresponding time values, specified in UTC. Any time values not applicable to the entry can be left unchanged, or set to January 1, 1601 00:00:00 UTC.
  • Size: For file entries, set to the size of the file, in bytes; for other entries, set to 0.
  • AllocationSize: For file entries, set to the number of bytes allocated locally for the file; for other entries, set to 0. The allocation size is typically a multiple of the ClusterSize.
  • FileId: Set to the unique Id of the file or directory represented by the entry. Please refer to the File IDs topic for more information.
  • Attributes: Set to the file or directory attributes of the entry. If the SupportCompressedAttribute property is set to true, an event handler should properly set or clear the FILE_ATTRIBUTE_COMPRESSED in the Attributes parameter.
  • ReparseTag: If the UseReparsePoints property is enabled, and the entry is a reparse point, set to the reparse point's tag.
    • Ensure that the FILE_ATTRIBUTE_REPARSE_POINT attribute is included in the value supplied for the Attributes parameter.
    • The tag should have been stored when the reparse point was created (i.e., during an earlier SetReparsePoint event).
    • Please refer to the Reparse Points topic for more information.

If there are no more matching entries present, set FileFound to false and leave the above parameters unchanged. When the OS is finished with the directory enumeration, the CloseDirectoryEnumeration event will fire.

RequestedInfo: This value specifies which kinds of information the component is interested in. Use this information as a hint to save some CPU ticks. Providing unrequested information will not cause a problem, but this information will be ignored, thus wasting the time used to obtain it. The value is a combination of the following flags:

FILEINFO_REAL_NAME0x0040File's actual name is requested.

In an EnumerateDirectory event handler, store the name of the file or directory in the FileName parameter. In a GetFileInfo event handler, store the name of the file or directory in the RealFileName parameter. Refer to the corresponding event's help topic for more details.

FILEINFO_SHORT_NAME0x0200Short name is requested.

FILEINFO_TIME0x0004File times are requested.

FILEINFO_SIZE0x0008File size is requested.

FILEINFO_ATTR0x0010File attributes are requested.

FILEINFO_FILEID0x0020File Id is requested.

This flag is used when UseFileIds is true.

FILEINFO_REPARSE_TAG0x0080File Reparse Tag is requested.

This flag is used when UseReparsePoints is true. The reparse tag must be provided if file attributes indicate that the file or directory is a reparse point.

The Mask parameter specifies the filename mask that should be used to filter the results. This value may contain any combination of valid filename characters and wildcards (the * and ? characters). Alternatively, it may be an exact filename (i.e., a value without any wildcards), as some applications query file information by specifying an exact filename in an enumeration. Note: When a request for directory enumeration passes Windows network redirector, it always uses the mask * regardless of what the original mask was.

The CaseSensitive parameter indicates whether entry names should be matched against the specified Mask in a case-sensitive manner. It will always be false if the UseCaseSensitiveFileNames property is disabled.

Note: This parameter is not currently used; the search is always case-insensitive.

The Restart parameter, if true, indicates that the enumeration should be restarted from the beginning of the directory. Any previously reported entries that still exist should be reported again.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The DirectoryContext, HandleContext, and EnumerationContext parameters are placeholders for application-defined data associated with the directory, specific handle, and enumeration, respectively. (For general-purpose events, the DirectoryContext is called FileContext instead.) DirectoryContext corresponds to the FileContext in the file/directory creation, opening, and closing events. Please refer to the Contexts topic for more information.

Note: If an application calls the NotifyDirectoryChange method and passes a mask instead of a filename, the component will fire this EnumerateDirectory event to collect the names of files and subdirectories, and in this case, the HandleInfo, DirectoryContext, and HandleContext parameters will be empty.

Note: To avoid unexpected delays and slowdown, enumeration does not refresh the metadata cache or nonexistent file cache. If your data may be altered on the backend side (i.e., not through the virtual disk), your application needs to track the changes and use NotifyDirectoryChange, as needed, which will update the mentioned caches. Alternatively, you may disable either or both of the caches.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

Note: For this event, returning ERROR_FILE_INVALID has no effect.

EnumerateHardLinks Event (CBFS Component)

This event fires when the OS needs to enumerate a file's hard links.

Syntax

// CBFSEnumerateHardLinksEventArgs carries the CBFS EnumerateHardLinks event's parameters.
type CBFSEnumerateHardLinksEventArgs struct {...}

func (args *CBFSEnumerateHardLinksEventArgs) FileName() string
func (args *CBFSEnumerateHardLinksEventArgs) LinkFound() bool
func (args *CBFSEnumerateHardLinksEventArgs) SetLinkFound(value bool)

func (args *CBFSEnumerateHardLinksEventArgs) LinkName() string
func (args *CBFSEnumerateHardLinksEventArgs) SetLinkName(value string)

func (args *CBFSEnumerateHardLinksEventArgs) ParentId() int64
func (args *CBFSEnumerateHardLinksEventArgs) SetParentId(value int64)

func (args *CBFSEnumerateHardLinksEventArgs) HandleInfo() int64
func (args *CBFSEnumerateHardLinksEventArgs) FileContext() int64
func (args *CBFSEnumerateHardLinksEventArgs) SetFileContext(value int64)

func (args *CBFSEnumerateHardLinksEventArgs) HandleContext() int64
func (args *CBFSEnumerateHardLinksEventArgs) SetHandleContext(value int64)

func (args *CBFSEnumerateHardLinksEventArgs) EnumerationContext() int64
func (args *CBFSEnumerateHardLinksEventArgs) SetEnumerationContext(value int64)

func (args *CBFSEnumerateHardLinksEventArgs) ResultCode() int32
func (args *CBFSEnumerateHardLinksEventArgs) SetResultCode(value int32)

// CBFSEnumerateHardLinksEvent defines the signature of the CBFS EnumerateHardLinks event's handler function.
type CBFSEnumerateHardLinksEvent func(sender *CBFS, args *CBFSEnumerateHardLinksEventArgs)

func (obj *CBFS) GetOnEnumerateHardLinksHandler() CBFSEnumerateHardLinksEvent
func (obj *CBFS) SetOnEnumerateHardLinksHandler(handlerFunc CBFSEnumerateHardLinksEvent)

Remarks

This event fires when the OS needs to enumerate the hard links of the file specified by FileName (which will have been opened via OpenFile).

This event needs to be handled only if the UseHardLinks property is enabled.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must return information about each of the file's hard links.

Note: A file's "primary" name (i.e., the one contained in FileName) is itself one of the hard links that must be reported; please refer to the Hard Links topic for more information.

For each hard link, set LinkFound to true and supply the hard link's information using the following parameters:

  • LinkName: Set to the name of the hard link (not including its path).
    • The length of the returned name must not exceed the value of the MaxFileNameLength property.
  • ParentId: Set to the unique Id of the directory the hard link resides in (this Id should not change over time). Always use 0x7FFFFFFFFFFFFFFF if the hard link resides in the root directory (\).

If there are no more hard links present, set LinkFound to false and leave the above parameters unchanged. When the OS is finished with the hard links enumeration, the CloseHardLinksEnumeration event will fire.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext, HandleContext, and EnumerationContext parameters are placeholders for application-defined data associated with the file, specific handle, and enumeration, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

EnumerateNamedStreams Event (CBFS Component)

This event fires when the OS needs to enumerate a file's named streams.

Syntax

// CBFSEnumerateNamedStreamsEventArgs carries the CBFS EnumerateNamedStreams event's parameters.
type CBFSEnumerateNamedStreamsEventArgs struct {...}

func (args *CBFSEnumerateNamedStreamsEventArgs) FileName() string
func (args *CBFSEnumerateNamedStreamsEventArgs) NamedStreamFound() bool
func (args *CBFSEnumerateNamedStreamsEventArgs) SetNamedStreamFound(value bool)

func (args *CBFSEnumerateNamedStreamsEventArgs) StreamName() string
func (args *CBFSEnumerateNamedStreamsEventArgs) SetStreamName(value string)

func (args *CBFSEnumerateNamedStreamsEventArgs) StreamSize() int64
func (args *CBFSEnumerateNamedStreamsEventArgs) SetStreamSize(value int64)

func (args *CBFSEnumerateNamedStreamsEventArgs) StreamAllocationSize() int64
func (args *CBFSEnumerateNamedStreamsEventArgs) SetStreamAllocationSize(value int64)

func (args *CBFSEnumerateNamedStreamsEventArgs) HandleInfo() int64
func (args *CBFSEnumerateNamedStreamsEventArgs) FileContext() int64
func (args *CBFSEnumerateNamedStreamsEventArgs) SetFileContext(value int64)

func (args *CBFSEnumerateNamedStreamsEventArgs) HandleContext() int64
func (args *CBFSEnumerateNamedStreamsEventArgs) SetHandleContext(value int64)

func (args *CBFSEnumerateNamedStreamsEventArgs) EnumerationContext() int64
func (args *CBFSEnumerateNamedStreamsEventArgs) SetEnumerationContext(value int64)

func (args *CBFSEnumerateNamedStreamsEventArgs) ResultCode() int32
func (args *CBFSEnumerateNamedStreamsEventArgs) SetResultCode(value int32)

// CBFSEnumerateNamedStreamsEvent defines the signature of the CBFS EnumerateNamedStreams event's handler function.
type CBFSEnumerateNamedStreamsEvent func(sender *CBFS, args *CBFSEnumerateNamedStreamsEventArgs)

func (obj *CBFS) GetOnEnumerateNamedStreamsHandler() CBFSEnumerateNamedStreamsEvent
func (obj *CBFS) SetOnEnumerateNamedStreamsHandler(handlerFunc CBFSEnumerateNamedStreamsEvent)

Remarks

This event fires when the OS needs to enumerate the named streams of the file specified by FileName (which will have been opened via OpenFile).

This event needs to be handled only if the UseAlternateDataStreams property is enabled.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must return information about each of the file's named streams. For each named stream, set StreamNameFound to true and supply the named stream's information using the following parameters:

  • StreamName: Set to the name of the named stream, prefixed with : (e.g. :MyStreamName). For more information about stream naming conventions, refer to Microsoft's Naming Conventions for Streams information.
    • The length of the returned name must not exceed the value of the MaxFileNameLength property.
  • StreamSize: Set the size, in bytes, of the named stream's data.
  • StreamAllocationSize: Set to the number of bytes allocated locally for the named stream. This is typically a multiple of the ClusterSize.

If there are no more named streams present, set StreamNameFound to false and leave the above parameters unchanged. When the OS is finished with the named streams enumeration, the CloseNamedStreamsEnumeration event will fire.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext, HandleContext, and EnumerationContext parameters are placeholders for application-defined data associated with the file, specific handle, and enumeration, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

Error Event (CBFS Component)

This event fires if an unhandled error occurs during an event.

Syntax

// CBFSErrorEventArgs carries the CBFS Error event's parameters.
type CBFSErrorEventArgs struct {...}

func (args *CBFSErrorEventArgs) ErrorCode() int32
func (args *CBFSErrorEventArgs) Description() string
// CBFSErrorEvent defines the signature of the CBFS Error event's handler function.
type CBFSErrorEvent func(sender *CBFS, args *CBFSErrorEventArgs)

func (obj *CBFS) GetOnErrorHandler() CBFSErrorEvent
func (obj *CBFS) SetOnErrorHandler(handlerFunc CBFSErrorEvent)

Remarks

This event fires if an unhandled error occurs during another event. Developers can use this information to track down unhandled errors in an application's event handlers.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

FlushFile Event (CBFS Component)

This event fires when the OS needs to flush an open file's data out to storage.

Syntax

// CBFSFlushFileEventArgs carries the CBFS FlushFile event's parameters.
type CBFSFlushFileEventArgs struct {...}

func (args *CBFSFlushFileEventArgs) FileName() string
func (args *CBFSFlushFileEventArgs) FileContext() int64
func (args *CBFSFlushFileEventArgs) ResultCode() int32
func (args *CBFSFlushFileEventArgs) SetResultCode(value int32)

// CBFSFlushFileEvent defines the signature of the CBFS FlushFile event's handler function.
type CBFSFlushFileEvent func(sender *CBFS, args *CBFSFlushFileEventArgs)

func (obj *CBFS) GetOnFlushFileHandler() CBFSFlushFileEvent
func (obj *CBFS) SetOnFlushFileHandler(handlerFunc CBFSFlushFileEvent)

Remarks

This event fires any time the OS needs the virtual filesystem to flush data out to storage. If the FileName parameter is nonempty, then all data related to the specified file (i.e., contents and all metadata) should be flushed. If FileName is empty, everything related to the virtual drive should be flushed.

To handle this event properly, applications must flush the requested data, writing it out to their backend storage.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The FileContext parameter is a placeholder for application-defined data associated with the file. Please refer to the Contexts topic for more information. (Not applicable if FileName is empty.)

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

Fsctl Event (CBFS Component)

This event fires when the virtual filesystem receives a nonstandard request (filesystem control code).

Syntax

// CBFSFsctlEventArgs carries the CBFS Fsctl event's parameters.
type CBFSFsctlEventArgs struct {...}

func (args *CBFSFsctlEventArgs) FileName() string
func (args *CBFSFsctlEventArgs) Code() int32
func (args *CBFSFsctlEventArgs) InputBuffer() []byte
func (args *CBFSFsctlEventArgs) InputBufferLength() int32
func (args *CBFSFsctlEventArgs) OutputBuffer() []byte
func (args *CBFSFsctlEventArgs) SetOutputBuffer(value []byte)

func (args *CBFSFsctlEventArgs) OutputBufferLength() int32
func (args *CBFSFsctlEventArgs) BytesReturned() int32
func (args *CBFSFsctlEventArgs) SetBytesReturned(value int32)

func (args *CBFSFsctlEventArgs) FileContext() int64
func (args *CBFSFsctlEventArgs) SetFileContext(value int64)

func (args *CBFSFsctlEventArgs) ResultCode() int32
func (args *CBFSFsctlEventArgs) SetResultCode(value int32)

// CBFSFsctlEvent defines the signature of the CBFS Fsctl event's handler function.
type CBFSFsctlEvent func(sender *CBFS, args *CBFSFsctlEventArgs)

func (obj *CBFS) GetOnFsctlHandler() CBFSFsctlEvent
func (obj *CBFS) SetOnFsctlHandler(handlerFunc CBFSFsctlEvent)

Remarks

An FSCTL is a system call for filesystem-specific I/O operations as well as for other operations that cannot be expressed through regular filesystem calls. Such calls carry a control code, and the effects of the call depend entirely on how a filesystem handles that control code. A control code is composed of, among other things, a function code and flags that describe how data are passed.

CBFS Connect reserves function codes 2400-4096 for applications' use, and normally fires this event only for control codes containing a function code from that range. If, however, the HandleAllFsctls property is enabled, the component will fire this event for all FSCTLs other than those processed by CBFS Connect itself.

This event is optional. Applications that choose to implement it are free to do so in any manner they desire based on the control code received.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

An application can send a custom FSCTL by defining a control code with the following macro and then using that control code to call the Windows API's DeviceIoControl function. #define CTL_CODE( DeviceType, Function, Method, Access ) \ ( ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method) )

  • DeviceType: Must always be FILE_DEVICE_FILE_SYSTEM (9).
  • Function: Must be an integer in the range 2400-4096.
  • Method ("TransferType"): Specifies how data are passed between the caller and the driver. Possible values are as follows:
    • METHOD_BUFFERED (0)
    • METHOD_IN_DIRECT (1)
    • METHOD_OUT_DIRECT (2)
    • METHOD_NEITHER (3)
    For small amounts of data (1-4096 bytes), it is best to use METHOD_BUFFERED (0); otherwise, use METHOD_NEITHER (3) or one of the other values.
  • Access ("RequiredAccess"): Indicates the type(s) of access the caller must request when opening a handle to the target filesystem object (i.e., the handle passed for the hDevice parameter of the DeviceIoControl function). The system's I/O manager will block the request if the caller did not open the specified handle with the required access rights. Possible values are as follows:
    • FILE_ANY_ACCESS (0) (i.e., the caller can send the FSCTL regardless of access rights)
    • FILE_READ_ACCESS (1)
    • FILE_WRITE_ACCESS (2)
    The latter two options can be ORed together to require the caller to have both read and write access.

Please refer to Microsoft's Defining I/O Control Codes article for more information.

The FileName parameter identifies the file or directory targeted by the request. It may be empty if the request is targeting the virtual drive.

The Code parameter reflects the control code received. If the specified control code is unrecognized or unsupported (either in general, or for the filesystem object specified by FileName), return the ERROR_INVALID_FUNCTION error code via ResultCode.

The InputBuffer parameter points to the memory buffer containing the data required to perform the operation. The format of this data depends on the specified Code; it may be empty. The InputBufferLength parameter specifies the length, in bytes, of InputBuffer.

The OutputBuffer parameter points to the memory buffer that receives the data returned by the operation. The format of this data depends on the specified Code; it may be empty. The OutputBufferLength parameter specifies the capacity, in bytes, of OutputBuffer; applications should set the BytesReturned parameter to the number of bytes written to OutputBuffer.

If the application needs to return more than OutputBufferLength bytes of data, it should do one of the following:

  1. If OutputBuffer is too small to hold all of the data, but can hold some entries, then the application should write as much data to it as possible, set BytesReturned appropriately, and return the ERROR_MORE_DATA error code via ResultCode.
  2. If OutputBuffer is too small to hold any data, then the application should set BytesReturned to 0, and return the ERROR_INSUFFICIENT_BUFFER error code via ResultCode.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The FileContext parameter is a placeholder for application-defined data associated with the file. Please refer to the Contexts topic for more information.

Initially, the Result parameter will be set to ERROR_INVALID_FUNCTION. If an event handler processes the request in a meaningful way (i.e., the requestor will receive an expected result), the event handler should set Result to 0 or another error code that should reach the requestor. Please refer to the Error Reporting and Handling topic for more information.

GetDefaultQuotaInfo Event (CBFS Component)

This event fires when the OS needs the virtual drive's default quota information.

Syntax

// CBFSGetDefaultQuotaInfoEventArgs carries the CBFS GetDefaultQuotaInfo event's parameters.
type CBFSGetDefaultQuotaInfoEventArgs struct {...}

func (args *CBFSGetDefaultQuotaInfoEventArgs) DefaultQuotaThreshold() int64
func (args *CBFSGetDefaultQuotaInfoEventArgs) SetDefaultQuotaThreshold(value int64)

func (args *CBFSGetDefaultQuotaInfoEventArgs) DefaultQuotaLimit() int64
func (args *CBFSGetDefaultQuotaInfoEventArgs) SetDefaultQuotaLimit(value int64)

func (args *CBFSGetDefaultQuotaInfoEventArgs) FileSystemControlFlags() int64
func (args *CBFSGetDefaultQuotaInfoEventArgs) SetFileSystemControlFlags(value int64)

func (args *CBFSGetDefaultQuotaInfoEventArgs) ResultCode() int32
func (args *CBFSGetDefaultQuotaInfoEventArgs) SetResultCode(value int32)

// CBFSGetDefaultQuotaInfoEvent defines the signature of the CBFS GetDefaultQuotaInfo event's handler function.
type CBFSGetDefaultQuotaInfoEvent func(sender *CBFS, args *CBFSGetDefaultQuotaInfoEventArgs)

func (obj *CBFS) GetOnGetDefaultQuotaInfoHandler() CBFSGetDefaultQuotaInfoEvent
func (obj *CBFS) SetOnGetDefaultQuotaInfoHandler(handlerFunc CBFSGetDefaultQuotaInfoEvent)

Remarks

This event fires when the OS needs the default quota information, set during an earlier SetDefaultQuotaInfo event, for the virtual drive.

This event needs to be handled only if the UseDiskQuotas property is enabled. To handle this event properly, applications must return the virtual drive's default quota information by setting DefaultQuotaThreshold, DefaultQuotaLimit, and FileSystemControlFlags.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

Descriptions of the DefaultQuotaThreshold, DefaultQuotaLimit, and FileSystemControlFlags parameters can be found in the Windows API's FILE_FS_CONTROL_INFORMATION structure documentation.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

GetFileInfo Event (CBFS Component)

This event fires when the OS needs information about a file or directory.

Syntax

// CBFSGetFileInfoEventArgs carries the CBFS GetFileInfo event's parameters.
type CBFSGetFileInfoEventArgs struct {...}

func (args *CBFSGetFileInfoEventArgs) FileName() string
func (args *CBFSGetFileInfoEventArgs) RequestedInfo() int32
func (args *CBFSGetFileInfoEventArgs) FileExists() bool
func (args *CBFSGetFileInfoEventArgs) SetFileExists(value bool)

func (args *CBFSGetFileInfoEventArgs) CreationTime() time.Time
func (args *CBFSGetFileInfoEventArgs) SetCreationTime(value time.Time)

func (args *CBFSGetFileInfoEventArgs) LastAccessTime() time.Time
func (args *CBFSGetFileInfoEventArgs) SetLastAccessTime(value time.Time)

func (args *CBFSGetFileInfoEventArgs) LastWriteTime() time.Time
func (args *CBFSGetFileInfoEventArgs) SetLastWriteTime(value time.Time)

func (args *CBFSGetFileInfoEventArgs) ChangeTime() time.Time
func (args *CBFSGetFileInfoEventArgs) SetChangeTime(value time.Time)

func (args *CBFSGetFileInfoEventArgs) Size() int64
func (args *CBFSGetFileInfoEventArgs) SetSize(value int64)

func (args *CBFSGetFileInfoEventArgs) AllocationSize() int64
func (args *CBFSGetFileInfoEventArgs) SetAllocationSize(value int64)

func (args *CBFSGetFileInfoEventArgs) FileId() int64
func (args *CBFSGetFileInfoEventArgs) SetFileId(value int64)

func (args *CBFSGetFileInfoEventArgs) Attributes() int64
func (args *CBFSGetFileInfoEventArgs) SetAttributes(value int64)

func (args *CBFSGetFileInfoEventArgs) ReparseTag() int64
func (args *CBFSGetFileInfoEventArgs) SetReparseTag(value int64)

func (args *CBFSGetFileInfoEventArgs) HardLinkCount() int32
func (args *CBFSGetFileInfoEventArgs) SetHardLinkCount(value int32)

func (args *CBFSGetFileInfoEventArgs) ShortFileName() string
func (args *CBFSGetFileInfoEventArgs) SetShortFileName(value string)

func (args *CBFSGetFileInfoEventArgs) RealFileName() string
func (args *CBFSGetFileInfoEventArgs) SetRealFileName(value string)

func (args *CBFSGetFileInfoEventArgs) ResultCode() int32
func (args *CBFSGetFileInfoEventArgs) SetResultCode(value int32)

// CBFSGetFileInfoEvent defines the signature of the CBFS GetFileInfo event's handler function.
type CBFSGetFileInfoEvent func(sender *CBFS, args *CBFSGetFileInfoEventArgs)

func (obj *CBFS) GetOnGetFileInfoHandler() CBFSGetFileInfoEvent
func (obj *CBFS) SetOnGetFileInfoHandler(handlerFunc CBFSGetFileInfoEvent)

Remarks

This event fires when the OS needs information about the file or directory specified by FileName and in some other cases (see the following notes for details).

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications should first check whether the specified file or directory exists, and set FileExists accordingly. If no such file or directory exists, set FileExists to false. If the file or directory exists, set FileExists to true, inspect the RequestedInfo parameter for the types of information required, and supply its information using the following parameters:

  • CreationTime, LastAccessTime, LastWriteTime, ChangeTime: Set to the corresponding time values of the file or directory, specified in UTC. Any nonapplicable time values can be left unchanged, or set to January 1, 1601 00:00:00 UTC.
  • Size: For files, set to the size of the file, in bytes; for directories, set to 0.
  • AllocationSize: For files, set to the number of bytes allocated locally for the file; for directories, set to 0. The allocation size is typically a multiple of the ClusterSize.
  • FileId: Set to the unique Id of the file or directory. Please refer to the File IDs topic for more information.
  • Attributes: Set to the attributes of the file or directory. If the SupportCompressedAttribute property is set to true, an event handler should properly set or clear the FILE_ATTRIBUTE_COMPRESSED in the Attributes parameter.
  • ReparseTag: If the UseReparsePoints property is enabled, and the entry is a reparse point, set to the reparse point's tag.
    • Ensure that the FILE_ATTRIBUTE_REPARSE_POINT attribute is included in the value supplied for the Attributes parameter.
    • The tag should have been stored when the reparse point was created (i.e., during an earlier SetReparsePoint event).
    • Please refer to the Reparse Points topic for more information.
  • HardLinkCount: If the UseHardLinks property is enabled, set to the number of hard links that point to the file. The default value is 1 (which is also the only valid value for directories). Please refer to the Hard Links topic for more information.
  • ShortFileName: If the UseShortFileNames property is enabled, set to the short (8.3) name of the file.
    • If UseShortFileNames is enabled, it is possible that FileName is already a short name. In such cases, return the same name in ShortFileName.
    • The short name must adhere to the 8.3 name format; please refer to the Short File Names topic for more information.
  • RealFileName: If the UseCaseSensitiveFileNames property is enabled, and FileName's casing differs from that of the actual file or directory name, set to the real name of said file or directory.
    • For example, if the requested FileName is QWERTY.txt, but the only similarly named file in the virtual filesystem is qwErTy.TxT, then this parameter should be set to the latter.
    • If the specified FileName includes a path, it must be preserved in the value returned via RealFileName; only the casing of the filename and extension may be corrected.
    • The length of the returned name (and path, if applicable) must not exceed the value of the MaxFilePathLength property.

RequestedInfo: This value specifies which kinds of information the component is interested in. Use this information as a hint to save some CPU ticks. Providing unrequested information will not cause a problem, but this information will be ignored, thus wasting the time used to obtain it. The value is a combination of the following flags:

FILEINFO_REAL_NAME0x0040File's actual name is requested.

In an EnumerateDirectory event handler, store the name of the file or directory in the FileName parameter. In a GetFileInfo event handler, store the name of the file or directory in the RealFileName parameter. Refer to the corresponding event's help topic for more details.

FILEINFO_SHORT_NAME0x0200Short name is requested.

FILEINFO_TIME0x0004File times are requested.

FILEINFO_SIZE0x0008File size is requested.

FILEINFO_ATTR0x0010File attributes are requested.

FILEINFO_FILEID0x0020File Id is requested.

This flag is used when UseFileIds is true.

FILEINFO_REPARSE_TAG0x0080File Reparse Tag is requested.

This flag is used when UseReparsePoints is true. The reparse tag must be provided if file attributes indicate that the file or directory is a reparse point.

Notes:

  1. if the UseCaseSensitiveFileNames and UseAlternateDataStreams properties are both enabled, this event may also be used to obtain the real name of a named stream. When returning the name of a named stream via the RealFileName parameter, prepend a colon (:) to the stream's name so that it looks like this: :Zone.Identifier.
  2. if the UpdateFileMetadataOnOpen config setting is true, this event will fire right after the OpenFile event but only if the file was fully closed before OpenFile.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

Note: For this event, returning ERROR_FILE_INVALID has no effect.

GetFileNameByFileId Event (CBFS Component)

This event fires when the component needs to translate a file Id to a file or directory path.

Syntax

// CBFSGetFileNameByFileIdEventArgs carries the CBFS GetFileNameByFileId event's parameters.
type CBFSGetFileNameByFileIdEventArgs struct {...}

func (args *CBFSGetFileNameByFileIdEventArgs) FileId() int64
func (args *CBFSGetFileNameByFileIdEventArgs) FilePath() string
func (args *CBFSGetFileNameByFileIdEventArgs) SetFilePath(value string)

func (args *CBFSGetFileNameByFileIdEventArgs) ResultCode() int32
func (args *CBFSGetFileNameByFileIdEventArgs) SetResultCode(value int32)

// CBFSGetFileNameByFileIdEvent defines the signature of the CBFS GetFileNameByFileId event's handler function.
type CBFSGetFileNameByFileIdEvent func(sender *CBFS, args *CBFSGetFileNameByFileIdEventArgs)

func (obj *CBFS) GetOnGetFileNameByFileIdHandler() CBFSGetFileNameByFileIdEvent
func (obj *CBFS) SetOnGetFileNameByFileIdHandler(handlerFunc CBFSGetFileNameByFileIdEvent)

Remarks

This event fires any time the component needs a specified FileId translated to a file or directory path. This typically occurs when a process tries to open a file or directory by Id rather than by name (e.g., if FILE_OPEN_BY_FILE_ID is used when calling the Windows API's ZwCreateFile function); the OpenFile event fires after the path is obtained from this event.

This event must be handled if one of the UseDiskQuotas or UseHardLinks properties is enabled; otherwise, it is optional, and applications need not implement it if the virtual filesystem doesn't support file Ids.

Note: NFS sharing makes use of file IDs.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must set FilePath to the absolute path of the file or directory associated with the specified FileId. The length of the path must not exceed the value of the MaxFilePathLength property.

The root directory (\) always uses the predefined Id 0x7FFFFFFFFFFFFFFF.

Please refer to the File IDs topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

GetFileSecurity Event (CBFS Component)

This event fires when the OS needs to read the Windows security attributes of a file or directory.

Syntax

// CBFSGetFileSecurityEventArgs carries the CBFS GetFileSecurity event's parameters.
type CBFSGetFileSecurityEventArgs struct {...}

func (args *CBFSGetFileSecurityEventArgs) FileName() string
func (args *CBFSGetFileSecurityEventArgs) SecurityInformation() int32
func (args *CBFSGetFileSecurityEventArgs) SecurityDescriptor() []byte
func (args *CBFSGetFileSecurityEventArgs) SetSecurityDescriptor(value []byte)

func (args *CBFSGetFileSecurityEventArgs) BufferLength() int32
func (args *CBFSGetFileSecurityEventArgs) DescriptorLength() int32
func (args *CBFSGetFileSecurityEventArgs) SetDescriptorLength(value int32)

func (args *CBFSGetFileSecurityEventArgs) HandleInfo() int64
func (args *CBFSGetFileSecurityEventArgs) FileContext() int64
func (args *CBFSGetFileSecurityEventArgs) SetFileContext(value int64)

func (args *CBFSGetFileSecurityEventArgs) HandleContext() int64
func (args *CBFSGetFileSecurityEventArgs) SetHandleContext(value int64)

func (args *CBFSGetFileSecurityEventArgs) ResultCode() int32
func (args *CBFSGetFileSecurityEventArgs) SetResultCode(value int32)

// CBFSGetFileSecurityEvent defines the signature of the CBFS GetFileSecurity event's handler function.
type CBFSGetFileSecurityEvent func(sender *CBFS, args *CBFSGetFileSecurityEventArgs)

func (obj *CBFS) GetOnGetFileSecurityHandler() CBFSGetFileSecurityEvent
func (obj *CBFS) SetOnGetFileSecurityHandler(handlerFunc CBFSGetFileSecurityEvent)

Remarks

This event fires when the OS needs to read the Windows security attributes of the file or directory specified by FileName.

This event only needs to be handled if the UseWindowsSecurity property is enabled.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must return the requested pieces of security information, specified by SecurityInformation, via the SecurityDescriptor buffer. Please refer to the following parameter descriptions, as well as the Security Checks topic, for more information.

The SecurityInformation parameter indicates which pieces of security information must be provided. This value is a bitfield; possible flags include (but are not limited to) the following:

  • OWNER_SECURITY_INFORMATION
  • GROUP_SECURITY_INFORMATION
  • DACL_SECURITY_INFORMATION
  • SACL_SECURITY_INFORMATION
Please refer to Microsoft's SECURITY_INFORMATION data type documentation for more information about possible values.

The SecurityDescriptor parameter points to the memory buffer that receives the requested data. It is available only if BufferLength is greater than 0. The data must be formatted as a SECURITY_DESCRIPTOR structure in self-relative format. Please refer to these articles for more information about self-relative security descriptors.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The BufferLength parameter specifies the capacity, in bytes, of the SecurityDescriptor buffer; and the DescriptorLength parameter specifies, in bytes, the length of the security descriptor.

If the SecurityDescriptor buffer has enough capacity to accommodate the entire security descriptor, DescriptorLength must be set to the length of the data copied to SecurityDescriptor. If the SecurityDescriptor buffer is too small (or, in cases in which BufferLength is 0, unavailable), do not write any data to it; instead, set DescriptorLength to the number of bytes required to hold the requested data, and return the ERROR_INSUFFICIENT_BUFFER error code via ResultCode.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

GetReparsePoint Event (CBFS Component)

This event fires when the OS wants to read a reparse point for a file or directory.

Syntax

// CBFSGetReparsePointEventArgs carries the CBFS GetReparsePoint event's parameters.
type CBFSGetReparsePointEventArgs struct {...}

func (args *CBFSGetReparsePointEventArgs) FileName() string
func (args *CBFSGetReparsePointEventArgs) ReparseBuffer() []byte
func (args *CBFSGetReparsePointEventArgs) SetReparseBuffer(value []byte)

func (args *CBFSGetReparsePointEventArgs) ReparseBufferLength() int32
func (args *CBFSGetReparsePointEventArgs) SetReparseBufferLength(value int32)

func (args *CBFSGetReparsePointEventArgs) HandleInfo() int64
func (args *CBFSGetReparsePointEventArgs) FileContext() int64
func (args *CBFSGetReparsePointEventArgs) SetFileContext(value int64)

func (args *CBFSGetReparsePointEventArgs) HandleContext() int64
func (args *CBFSGetReparsePointEventArgs) SetHandleContext(value int64)

func (args *CBFSGetReparsePointEventArgs) ResultCode() int32
func (args *CBFSGetReparsePointEventArgs) SetResultCode(value int32)

// CBFSGetReparsePointEvent defines the signature of the CBFS GetReparsePoint event's handler function.
type CBFSGetReparsePointEvent func(sender *CBFS, args *CBFSGetReparsePointEventArgs)

func (obj *CBFS) GetOnGetReparsePointHandler() CBFSGetReparsePointEvent
func (obj *CBFS) SetOnGetReparsePointHandler(handlerFunc CBFSGetReparsePointEvent)

Remarks

This event fires when the OS wants to read a reparse point for the file or directory specified by FileName.

This event only needs to be handled if the UseReparsePoints property is enabled.

Note: NFS sharing makes use of reparse points.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must populate ReparseBuffer with the reparse point data associated with the specified file or directory (i.e., the data stored during an earlier SetReparsePoint event), and set ReparseBufferLength to the number of bytes written.

Please refer to the Reparse Points topic for more information.

The ReparseBufferLength parameter's initial value reflects the capacity of the memory buffer pointed to by ReparseBuffer. If the buffer is too small to hold all of the reparse point data, then the application should write as much data to it as possible, set ReparseBufferLength appropriately, and return the ERROR_MORE_DATA error code via ResultCode.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

Depending on how the request originator accessed the specified file or directory, it may or may not currently be open. The HandleInfo, FileContext, and HandleContext parameters will be absent if it is not open, in which case, they will be nil.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

GetVolumeId Event (CBFS Component)

This event fires when the component needs the volume Id.

Syntax

// CBFSGetVolumeIdEventArgs carries the CBFS GetVolumeId event's parameters.
type CBFSGetVolumeIdEventArgs struct {...}

func (args *CBFSGetVolumeIdEventArgs) VolumeId() int32
func (args *CBFSGetVolumeIdEventArgs) SetVolumeId(value int32)

func (args *CBFSGetVolumeIdEventArgs) ResultCode() int32
func (args *CBFSGetVolumeIdEventArgs) SetResultCode(value int32)

// CBFSGetVolumeIdEvent defines the signature of the CBFS GetVolumeId event's handler function.
type CBFSGetVolumeIdEvent func(sender *CBFS, args *CBFSGetVolumeIdEventArgs)

func (obj *CBFS) GetOnGetVolumeIdHandler() CBFSGetVolumeIdEvent
func (obj *CBFS) SetOnGetVolumeIdHandler(handlerFunc CBFSGetVolumeIdEvent)

Remarks

This event fires any time the component needs to retrieve the volume Id of the virtual drive. Ideally, each drive's volume Id should be globally unique.

To handle this event properly, applications must return the virtual drive's volume Id via the VolumeId parameter.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

GetVolumeLabel Event (CBFS Component)

This event fires when the OS needs the volume label.

Syntax

// CBFSGetVolumeLabelEventArgs carries the CBFS GetVolumeLabel event's parameters.
type CBFSGetVolumeLabelEventArgs struct {...}

func (args *CBFSGetVolumeLabelEventArgs) Buffer() string
func (args *CBFSGetVolumeLabelEventArgs) SetBuffer(value string)

func (args *CBFSGetVolumeLabelEventArgs) ResultCode() int32
func (args *CBFSGetVolumeLabelEventArgs) SetResultCode(value int32)

// CBFSGetVolumeLabelEvent defines the signature of the CBFS GetVolumeLabel event's handler function.
type CBFSGetVolumeLabelEvent func(sender *CBFS, args *CBFSGetVolumeLabelEventArgs)

func (obj *CBFS) GetOnGetVolumeLabelHandler() CBFSGetVolumeLabelEvent
func (obj *CBFS) SetOnGetVolumeLabelHandler(handlerFunc CBFSGetVolumeLabelEvent)

Remarks

This event fires any time the OS needs to retrieve the volume label of the virtual drive.

To handle this event properly, applications must set Buffer to the most recent value obtained via SetVolumeLabel.

The length of the returned volume label must not exceed 32 characters, which is the maximum length supported by the OS.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

GetVolumeObjectId Event (CBFS Component)

This event fires when the OS needs the volume object Id and extended information.

Syntax

// CBFSGetVolumeObjectIdEventArgs carries the CBFS GetVolumeObjectId event's parameters.
type CBFSGetVolumeObjectIdEventArgs struct {...}

func (args *CBFSGetVolumeObjectIdEventArgs) ObjectId() []byte
func (args *CBFSGetVolumeObjectIdEventArgs) SetObjectId(value []byte)

func (args *CBFSGetVolumeObjectIdEventArgs) ObjectIdLength() int32
func (args *CBFSGetVolumeObjectIdEventArgs) ExtendedInformation() []byte
func (args *CBFSGetVolumeObjectIdEventArgs) SetExtendedInformation(value []byte)

func (args *CBFSGetVolumeObjectIdEventArgs) ExtendedInformationLength() int32
func (args *CBFSGetVolumeObjectIdEventArgs) ResultCode() int32
func (args *CBFSGetVolumeObjectIdEventArgs) SetResultCode(value int32)

// CBFSGetVolumeObjectIdEvent defines the signature of the CBFS GetVolumeObjectId event's handler function.
type CBFSGetVolumeObjectIdEvent func(sender *CBFS, args *CBFSGetVolumeObjectIdEventArgs)

func (obj *CBFS) GetOnGetVolumeObjectIdHandler() CBFSGetVolumeObjectIdEvent
func (obj *CBFS) SetOnGetVolumeObjectIdHandler(handlerFunc CBFSGetVolumeObjectIdEvent)

Remarks

This event fires any time the OS needs to retrieve the volume object Id and extended information for the virtual drive.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must populate the ObjectId and ExtendedInformation buffers with the most recent values obtained via SetVolumeObjectId.

The ObjectIdLength and ExtendedInformationLength values are specified by the OS; they will always be 16 and 48 bytes, respectively.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

GetVolumeSize Event (CBFS Component)

This event fires when the OS needs information about the virtual drive's capacity and free space.

Syntax

// CBFSGetVolumeSizeEventArgs carries the CBFS GetVolumeSize event's parameters.
type CBFSGetVolumeSizeEventArgs struct {...}

func (args *CBFSGetVolumeSizeEventArgs) TotalSectors() int64
func (args *CBFSGetVolumeSizeEventArgs) SetTotalSectors(value int64)

func (args *CBFSGetVolumeSizeEventArgs) AvailableSectors() int64
func (args *CBFSGetVolumeSizeEventArgs) SetAvailableSectors(value int64)

func (args *CBFSGetVolumeSizeEventArgs) ResultCode() int32
func (args *CBFSGetVolumeSizeEventArgs) SetResultCode(value int32)

// CBFSGetVolumeSizeEvent defines the signature of the CBFS GetVolumeSize event's handler function.
type CBFSGetVolumeSizeEvent func(sender *CBFS, args *CBFSGetVolumeSizeEventArgs)

func (obj *CBFS) GetOnGetVolumeSizeHandler() CBFSGetVolumeSizeEvent
func (obj *CBFS) SetOnGetVolumeSizeHandler(handlerFunc CBFSGetVolumeSizeEvent)

Remarks

This event fires any time the OS needs to retrieve the virtual drive's total storage capacity and free space, measured in sectors. The virtual drive's sector size is defined by the SectorSize configuration setting.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must set TotalSectors to the total number of sectors on the drive, and set AvailableSectors to the number of sectors that are available to the OS for storing filesystem objects.

The minimum drive size accepted by Windows is 6144 bytes (based on a 3072-byte sector, 1 sector per cluster and 2 clusters per drive). The component adjusts the minimum size to be at least 16 sectors (49152 bytes) to ensure compatibility with possible changes in future Windows updates.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

Ioctl Event (CBFS Component)

This event fires when the disk behind the virtual filesystem receives a nonstandard request (I/O control code).

Syntax

// CBFSIoctlEventArgs carries the CBFS Ioctl event's parameters.
type CBFSIoctlEventArgs struct {...}

func (args *CBFSIoctlEventArgs) FileName() string
func (args *CBFSIoctlEventArgs) Code() int32
func (args *CBFSIoctlEventArgs) InputBuffer() []byte
func (args *CBFSIoctlEventArgs) InputBufferLength() int32
func (args *CBFSIoctlEventArgs) OutputBuffer() []byte
func (args *CBFSIoctlEventArgs) SetOutputBuffer(value []byte)

func (args *CBFSIoctlEventArgs) OutputBufferLength() int32
func (args *CBFSIoctlEventArgs) BytesReturned() int32
func (args *CBFSIoctlEventArgs) SetBytesReturned(value int32)

func (args *CBFSIoctlEventArgs) ResultCode() int32
func (args *CBFSIoctlEventArgs) SetResultCode(value int32)

// CBFSIoctlEvent defines the signature of the CBFS Ioctl event's handler function.
type CBFSIoctlEvent func(sender *CBFS, args *CBFSIoctlEventArgs)

func (obj *CBFS) GetOnIoctlHandler() CBFSIoctlEvent
func (obj *CBFS) SetOnIoctlHandler(handlerFunc CBFSIoctlEvent)

Remarks

An IOCTL is a system call for device-specific I/O operations, as well as other operations that cannot be expressed through regular API calls. Such calls carry a control code, and the effects of the call depend entirely on how a device driver handles that control code. A control code is composed of, among other things, a function code and flags that describe how data are passed.

This event is optional. Applications that choose to implement it are free to do so in any manner they desire based on the control code received.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The FileName parameter identifies the file or directory targeted by the request. It may be empty if the request is targeting the virtual drive.

The Code parameter reflects the control code received. If the specified control code is unrecognized or unsupported, return the ERROR_INVALID_FUNCTION error code via ResultCode.

The InputBuffer parameter points to the memory buffer containing the data required to perform the operation. The format of this data depends on the specified Code; it may be empty. The InputBufferLength parameter specifies the length, in bytes, of InputBuffer.

The OutputBuffer parameter points to the memory buffer that receives the data returned by the operation. The format of this data depends on the specified Code; it may be empty. The OutputBufferLength parameter specifies the capacity, in bytes, of OutputBuffer; applications should set the BytesReturned parameter to the number of bytes written to OutputBuffer.

If the application needs to return more than OutputBufferLength bytes of data, it should do one of the following:

  1. If OutputBuffer is too small to hold all of the data, but can hold some entries, then the application should write as much data to it as possible, set BytesReturned appropriately, and return the ERROR_MORE_DATA error code via ResultCode.
  2. If OutputBuffer is too small to hold any data, then the application should set BytesReturned to 0, and return the ERROR_INSUFFICIENT_BUFFER error code via ResultCode.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

Initially, the Result parameter will be set to ERROR_INVALID_FUNCTION. If an event handler processes the request in a meaningful way (i.e., the requestor will receive an expected result), the event handler should set Result to 0 or another error code that should reach the requestor. Please refer to the Error Reporting and Handling topic for more information.

IsDirectoryEmpty Event (CBFS Component)

This event fires when the OS needs to know whether a directory is empty.

Syntax

// CBFSIsDirectoryEmptyEventArgs carries the CBFS IsDirectoryEmpty event's parameters.
type CBFSIsDirectoryEmptyEventArgs struct {...}

func (args *CBFSIsDirectoryEmptyEventArgs) DirectoryName() string
func (args *CBFSIsDirectoryEmptyEventArgs) IsEmpty() bool
func (args *CBFSIsDirectoryEmptyEventArgs) SetIsEmpty(value bool)

func (args *CBFSIsDirectoryEmptyEventArgs) DirectoryContext() int64
func (args *CBFSIsDirectoryEmptyEventArgs) SetDirectoryContext(value int64)

func (args *CBFSIsDirectoryEmptyEventArgs) ResultCode() int32
func (args *CBFSIsDirectoryEmptyEventArgs) SetResultCode(value int32)

// CBFSIsDirectoryEmptyEvent defines the signature of the CBFS IsDirectoryEmpty event's handler function.
type CBFSIsDirectoryEmptyEvent func(sender *CBFS, args *CBFSIsDirectoryEmptyEventArgs)

func (obj *CBFS) GetOnIsDirectoryEmptyHandler() CBFSIsDirectoryEmptyEvent
func (obj *CBFS) SetOnIsDirectoryEmptyHandler(handlerFunc CBFSIsDirectoryEmptyEvent)

Remarks

This event fires when the OS needs to know whether the directory specified by DirectoryName is empty.

This event needs to be handled only if the UseDirectoryEmptyCheck property is enabled. To handle this event properly, applications must set the IsEmpty parameter appropriately.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The DirectoryContext parameter is a placeholder for application-defined data associated with the directory (for "general-purpose" events, it is called FileContext instead). Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

LockFile Event (CBFS Component)

This event fires when the OS needs to lock a range of bytes in a file.

Syntax

// CBFSLockFileEventArgs carries the CBFS LockFile event's parameters.
type CBFSLockFileEventArgs struct {...}

func (args *CBFSLockFileEventArgs) FileName() string
func (args *CBFSLockFileEventArgs) ByteOffset() int64
func (args *CBFSLockFileEventArgs) Length() int64
func (args *CBFSLockFileEventArgs) Key() int32
func (args *CBFSLockFileEventArgs) ExclusiveLock() bool
func (args *CBFSLockFileEventArgs) FailImmediately() bool
func (args *CBFSLockFileEventArgs) HandleInfo() int64
func (args *CBFSLockFileEventArgs) FileContext() int64
func (args *CBFSLockFileEventArgs) SetFileContext(value int64)

func (args *CBFSLockFileEventArgs) HandleContext() int64
func (args *CBFSLockFileEventArgs) SetHandleContext(value int64)

func (args *CBFSLockFileEventArgs) ResultCode() int32
func (args *CBFSLockFileEventArgs) SetResultCode(value int32)

// CBFSLockFileEvent defines the signature of the CBFS LockFile event's handler function.
type CBFSLockFileEvent func(sender *CBFS, args *CBFSLockFileEventArgs)

func (obj *CBFS) GetOnLockFileHandler() CBFSLockFileEvent
func (obj *CBFS) SetOnLockFileHandler(handlerFunc CBFSLockFileEvent)

Remarks

This event fires when the OS needs to lock a range of bytes in the file specified by FileName. Typically, such requests originate from the Windows API's LockFile and LockFileEx functions.

This event is optional. The CBFS component automatically manages file locks in the virtual filesystem. If the resources an application uses for backend storage (e.g., files, memory, a database) are never directly accessed by anything other than the application itself, then there is no reason to implement this event.

If, however, an application's backend storage involves shared resources (i.e., those that could be accessed by something other than the application at any time), this event should be used to perform any actions needed to propagate the requested lock onto those resources.

For example, if an application's backend storage implementation involves files stored on a network server, then the locking request should be communicated to that server so that it can prevent other accessors from using the locked data.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

Applications that implement this event must also implement the UnlockFile event.

The ByteOffset and Length parameters specify the starting position of the range being locked, and the length of that range, respectively.

The Key parameter reflects the key that the byte range lock is associated with. This key is used to identify the byte range lock in later unlock-by-key requests.

The ExclusiveLock and FailImmediately parameters are described in-depth in the LockFileEx function's documentation.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

An event handler may return ERROR_RETRY to signal that locking cannot be done immediately but a retry is required a bit later. The time until the next attempt is set via the LockRetryInterval setting. This behavior requires that the UserModeLockFirst setting is enabled.

Mount Event (CBFS Component)

This event fires after the component mounts media into the virtual drive, making it available.

Syntax

// CBFSMountEventArgs carries the CBFS Mount event's parameters.
type CBFSMountEventArgs struct {...}

func (args *CBFSMountEventArgs) ResultCode() int32
func (args *CBFSMountEventArgs) SetResultCode(value int32)

// CBFSMountEvent defines the signature of the CBFS Mount event's handler function.
type CBFSMountEvent func(sender *CBFS, args *CBFSMountEventArgs)

func (obj *CBFS) GetOnMountHandler() CBFSMountEvent
func (obj *CBFS) SetOnMountHandler(handlerFunc CBFSMountEvent)

Remarks

This event fires once the component has mounted media into the virtual drive, making it available. Please refer to MountMedia for more information.

This event is optional; it is provided to give applications a chance to perform additional processing when the virtual filesystem is made available.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

OffloadReadFile Event (CBFS Component)

This event fires when the OS wants the virtual filesystem to perform an offloaded data transfer (ODX) read operation.

Syntax

// CBFSOffloadReadFileEventArgs carries the CBFS OffloadReadFile event's parameters.
type CBFSOffloadReadFileEventArgs struct {...}

func (args *CBFSOffloadReadFileEventArgs) FileName() string
func (args *CBFSOffloadReadFileEventArgs) TokenTimeToLive() int32
func (args *CBFSOffloadReadFileEventArgs) Position() int64
func (args *CBFSOffloadReadFileEventArgs) CopyLength() int64
func (args *CBFSOffloadReadFileEventArgs) TransferLength() int64
func (args *CBFSOffloadReadFileEventArgs) SetTransferLength(value int64)

func (args *CBFSOffloadReadFileEventArgs) TokenType() int32
func (args *CBFSOffloadReadFileEventArgs) SetTokenType(value int32)

func (args *CBFSOffloadReadFileEventArgs) TokenBuffer() []byte
func (args *CBFSOffloadReadFileEventArgs) SetTokenBuffer(value []byte)

func (args *CBFSOffloadReadFileEventArgs) BufferLength() int64
func (args *CBFSOffloadReadFileEventArgs) TokenLength() int32
func (args *CBFSOffloadReadFileEventArgs) SetTokenLength(value int32)

func (args *CBFSOffloadReadFileEventArgs) ResultFlags() int32
func (args *CBFSOffloadReadFileEventArgs) SetResultFlags(value int32)

func (args *CBFSOffloadReadFileEventArgs) HandleInfo() int64
func (args *CBFSOffloadReadFileEventArgs) FileContext() int64
func (args *CBFSOffloadReadFileEventArgs) SetFileContext(value int64)

func (args *CBFSOffloadReadFileEventArgs) HandleContext() int64
func (args *CBFSOffloadReadFileEventArgs) SetHandleContext(value int64)

func (args *CBFSOffloadReadFileEventArgs) ResultCode() int32
func (args *CBFSOffloadReadFileEventArgs) SetResultCode(value int32)

// CBFSOffloadReadFileEvent defines the signature of the CBFS OffloadReadFile event's handler function.
type CBFSOffloadReadFileEvent func(sender *CBFS, args *CBFSOffloadReadFileEventArgs)

func (obj *CBFS) GetOnOffloadReadFileHandler() CBFSOffloadReadFileEvent
func (obj *CBFS) SetOnOffloadReadFileHandler(handlerFunc CBFSOffloadReadFileEvent)

Remarks

This events fires when the OS wants the virtual filesystem to perform an offloaded read for the file specified by FileName as part of an offloaded data transfer.

To handle this event properly, applications should first verify whether the specified file supports offload operations, returning the ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED error code via ResultCode if not. Assuming the file does support offload operations, the application should perform any actions needed to prepare for the offloaded read based on the specified parameters, and then return the requested information. Please refer to the following parameter descriptions for more information.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The TokenTimeToLive parameter indicates the duration, in milliseconds, that the offloaded read operation remains valid. Multiple writes can be performed with the token returned in TokenBuffer until this time expires.

The Position and CopyLength parameters specify the byte offset and length (respectively) of a data chunk in the specified file that should be read, or in some other way prepared, for transferring.

The TransferLength parameter must be set to the number of bytes actually read/prepared as a result of this request. It may be less than CopyLength.

The TokenType parameter must be set to either (1) the Microsoft-defined value of STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA (0xFFFF0001) if the token represents data that are all zeros, or (2) an application-defined value outside of the reserved range 0xFFFF0002 to 0xFFFFFFFF to denote an application-defined token format.

Note: Use of the STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA token type is not required.

The TokenBuffer parameter points to a memory buffer that receives some application-defined token that identifies the data that have been read or prepared for transfer. The returned token will be passed to an offloaded write operation to actually transfer the data it represents. The BufferLength parameter specifies the capacity, in bytes, of TokenBuffer; applications must set the TokenLength parameter to the number of bytes written to TokenBuffer.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The ResultFlags parameter must be set to a combination of zero or more of the flags described in the FSCTL_OFFLOAD_READ_OUTPUT structure's documentation.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken. (This parameter may be absent, in which case it will be 0.)

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information. (HandleContext may be absent, in which case it will be nil.)

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

OffloadWriteFile Event (CBFS Component)

This event fires when the OS wants the virtual filesystem to perform an offloaded data transfer (ODX) write operation.

Syntax

// CBFSOffloadWriteFileEventArgs carries the CBFS OffloadWriteFile event's parameters.
type CBFSOffloadWriteFileEventArgs struct {...}

func (args *CBFSOffloadWriteFileEventArgs) FileName() string
func (args *CBFSOffloadWriteFileEventArgs) Position() int64
func (args *CBFSOffloadWriteFileEventArgs) CopyLength() int64
func (args *CBFSOffloadWriteFileEventArgs) TransferOffset() int64
func (args *CBFSOffloadWriteFileEventArgs) TransferLength() int64
func (args *CBFSOffloadWriteFileEventArgs) SetTransferLength(value int64)

func (args *CBFSOffloadWriteFileEventArgs) TokenType() int32
func (args *CBFSOffloadWriteFileEventArgs) Token() []byte
func (args *CBFSOffloadWriteFileEventArgs) TokenLength() int64
func (args *CBFSOffloadWriteFileEventArgs) ResultFlags() int32
func (args *CBFSOffloadWriteFileEventArgs) SetResultFlags(value int32)

func (args *CBFSOffloadWriteFileEventArgs) HandleInfo() int64
func (args *CBFSOffloadWriteFileEventArgs) FileContext() int64
func (args *CBFSOffloadWriteFileEventArgs) SetFileContext(value int64)

func (args *CBFSOffloadWriteFileEventArgs) HandleContext() int64
func (args *CBFSOffloadWriteFileEventArgs) SetHandleContext(value int64)

func (args *CBFSOffloadWriteFileEventArgs) ResultCode() int32
func (args *CBFSOffloadWriteFileEventArgs) SetResultCode(value int32)

// CBFSOffloadWriteFileEvent defines the signature of the CBFS OffloadWriteFile event's handler function.
type CBFSOffloadWriteFileEvent func(sender *CBFS, args *CBFSOffloadWriteFileEventArgs)

func (obj *CBFS) GetOnOffloadWriteFileHandler() CBFSOffloadWriteFileEvent
func (obj *CBFS) SetOnOffloadWriteFileHandler(handlerFunc CBFSOffloadWriteFileEvent)

Remarks

This event fires when the OS wants the virtual filesystem to perform an offloaded write for the file specified by FileName as part of an offloaded data transfer.

To handle this event properly, applications should perform any actions needed to handle the offloaded write based on the specified parameters, and then return the result information. Please refer to the following parameter descriptions for more information.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The Position and CopyLength parameters specify the byte offset and length, respectively, of the data chunk that should be written in the specified file. The CopyLength parameter's value may be smaller than the total amount of data represented by the token (in which case TransferOffset may be greater than 0).

The TransferOffset parameters specifies the byte offset, in the chunk of data represented by the token, from which to begin writing.

The TransferLength parameter must be set to the number of bytes actually written as a result of this request. It may be less than CopyLength.

The TokenType parameter indicates the type of token stored in the Token buffer. A value of STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA (0xFFFF0001) indicates that the token represents data that are all zeros. Any other value (outside of the reserved range 0xFFFF0002 to 0xFFFFFFFF) indicates an application-defined token format.

The Token parameter points to a memory buffer that contains the token returned in response to an earlier offloaded read request. The token identifies the chunk of data that has been read or prepared for transfer; refer to the OffloadReadFile event for more information. The TokenLength parameter specifies the length, in bytes, of the data in Token.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The ResultFlags parameter must be set to a combination of zero or more of the flags described in the FSCTL_OFFLOAD_WRITE_OUTPUT structure's documentation.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken. (This parameter may be absent, in which case it will be 0.)

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information. (HandleContext may be absent, in which case it will be nil.)

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

OpenFile Event (CBFS Component)

This event fires when the OS wants to open a file or directory.

Syntax

// CBFSOpenFileEventArgs carries the CBFS OpenFile event's parameters.
type CBFSOpenFileEventArgs struct {...}

func (args *CBFSOpenFileEventArgs) FileName() string
func (args *CBFSOpenFileEventArgs) DesiredAccess() int32
func (args *CBFSOpenFileEventArgs) Attributes() int32
func (args *CBFSOpenFileEventArgs) ShareMode() int32
func (args *CBFSOpenFileEventArgs) NTCreateDisposition() int32
func (args *CBFSOpenFileEventArgs) NTDesiredAccess() int32
func (args *CBFSOpenFileEventArgs) FileInfo() int64
func (args *CBFSOpenFileEventArgs) HandleInfo() int64
func (args *CBFSOpenFileEventArgs) FileContext() int64
func (args *CBFSOpenFileEventArgs) SetFileContext(value int64)

func (args *CBFSOpenFileEventArgs) HandleContext() int64
func (args *CBFSOpenFileEventArgs) SetHandleContext(value int64)

func (args *CBFSOpenFileEventArgs) ResultCode() int32
func (args *CBFSOpenFileEventArgs) SetResultCode(value int32)

// CBFSOpenFileEvent defines the signature of the CBFS OpenFile event's handler function.
type CBFSOpenFileEvent func(sender *CBFS, args *CBFSOpenFileEventArgs)

func (obj *CBFS) GetOnOpenFileHandler() CBFSOpenFileEvent
func (obj *CBFS) SetOnOpenFileHandler(handlerFunc CBFSOpenFileEvent)

Remarks

This event fires when the OS wants to open the existing file or directory specified by FileName using the open options reflected in Attributes. If the FireAllOpenCloseEvents property is disabled, this event will fire only when the first handle to the specified file or directory is opened. To determine whether the request is for a file or a directory, compare Attributes against the FILE_SYS_ATTR_DIRECTORY constant, as follows: // Check whether the request is for a file or a directory. bool isDirectory = Attributes & FILE_SYS_ATTR_DIRECTORY == FILE_SYS_ATTR_DIRECTORY;

If the UseAlternateDataStreams property is enabled, this event also fires anytime the OS wants to open a named data stream in a file. Such requests are distinguished by the presence of a colon (:) in the FileName value; the text before the colon is the name of the file itself, and the text after the colon is the name of the stream to open.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications should perform any actions needed to open the requested file, directory, or named stream in their backend storage. Applications are also responsible for validating the access rights of the process that initiated the request before performing the requested operation; please refer to the Security Checks topic for more information.

If there is an existing local file that corresponds to the virtual one specified by FileName, the application may call RouteToFile to have the component route future requests directly to that file. This event's FileInfo value must be passed to RouteToFile for request routing to be configured successfully.

In certain cases, this event may fire for a file or directory that no longer exists. Normally this will not happen, as the OS already knows which files exist (based on information obtained via GetFileInfo/EnumerateDirectory) before it sends the open request. If, however, a file or directory is deleted externally, a race condition may occur where said deletion is not detected by the OS or virtual filesystem before the open request arrives. In such cases, applications must return the ERROR_FILE_NOT_FOUND error code via ResultCode.

The DesiredAccess parameter specifies the access mode desired by the process that initiated the request; it may contain one or more of the following access flags:

DESIRED_ACCESS_FILE_LIST_DIRECTORY0x00000001For a directory, the right to list the contents of the directory.

DESIRED_ACCESS_FILE_READ_DATA0x00000001For a file object, the right to read the corresponding file data.

For a directory object, the right to read the corresponding directory data.

DESIRED_ACCESS_FILE_ADD_FILE0x00000002For a directory, the right to create a file in the directory.

DESIRED_ACCESS_FILE_WRITE_DATA0x00000002For a file object, the right to write data to the file.

For a directory object, the right to create a file in the directory

DESIRED_ACCESS_FILE_ADD_SUBDIRECTORY0x00000004For a directory, the right to create a subdirectory.

DESIRED_ACCESS_FILE_APPEND_DATA0x00000004For a file object, the right to append data to the file.

(For local files, write operations will not overwrite existing data if this flag is specified without FILE_WRITE_DATA.) For a directory object, the right to create a subdirectory (FILE_ADD_SUBDIRECTORY).

DESIRED_ACCESS_FILE_READ_EA0x00000008The right to read extended file attributes.

DESIRED_ACCESS_FILE_WRITE_EA0x00000010The right to write extended file attributes.

DESIRED_ACCESS_FILE_EXECUTE0x00000020For a native code file, the right to execute the file.

This access right given to scripts may cause the script to be executable, depending on the script interpreter.

DESIRED_ACCESS_FILE_DELETE_CHILD0x00000040For a directory, the right to delete a directory and all the files it contains, including read-only files.

DESIRED_ACCESS_FILE_READ_ATTRIBUTES0x00000080The right to read file attributes.

DESIRED_ACCESS_FILE_WRITE_ATTRIBUTES0x00000100The right to write file attributes.

DESIRED_ACCESS_READ_CONTROL0x00020000The right to read the information in the file or directory object's security descriptor.

This does not include the information in the SACL.

DESIRED_ACCESS_STANDARD_RIGHTS_READ0x00020000Includes READ_CONTROL, which is the right to read the information in the file or directory object's security descriptor.

This does not include the information in the SACL.

DESIRED_ACCESS_STANDARD_RIGHTS_WRITE0x00020000Same as STANDARD_RIGHTS_READ

DESIRED_ACCESS_STANDARD_RIGHTS_EXECUTE0x00020000Same as STANDARD_RIGHTS_READ

DESIRED_ACCESS_SYNCHRONIZE0x00100000The right to use the object for synchronization.

This enables a thread to wait until the object is in the signaled state. Some object types do not support this access right.

DESIRED_ACCESS_FILE_ALL_ACCESS0x001F01FFAll possible access rights for a file.

DESIRED_ACCESS_FILE_GENERIC_READ0x00120089A combinarion of flags that allow reading of the file.

Note: Don't match received values against this flag. Instead, use flags that specify the rights that you want to verify or add/remove.

DESIRED_ACCESS_FILE_GENERIC_WRITE0x00120116A combinarion of flags that allow modifications to the file.

Note: Don't match received values against this flag. Instead, use flags that specify the rights that you want to verify or add/remove.

DESIRED_ACCESS_FILE_GENERIC_EXECUTE0x001200A0A combinarion of flags that allow execution of the file.

Note: Don't match received values against this flag. Instead, use flags that specify the rights that you want to verify or add/remove.

This value may differ from the one originally passed to the OS; the component alters it in the following cases:

  • The DELETE flag is added if the requested CreateDisposition is FILE_SUPERSEDE.
  • The FILE_WRITE_DATA, FILE_WRITE_EA, and FILE_WRITE_ATTRIBUTES flags are added if the requested CreateDisposition is FILE_OVERWRITE or FILE_OVERWRITE_IF.
The original CreateDisposition and DesiredAccess values are exposed through the NTCreateDisposition and NTDesiredAccess parameters.

Note: These values are in NT format; that is, as expected by the Windows API's ZwCreateFile function.

The Attributes parameter contains file attributes; it may contain one or more of the following attributes:

FILE_SYS_ATTR_READ_ONLY0x00000001The file is read-only.

Applications can read the file, but cannot write to it or delete it. This attribute is not honored on directories.

FILE_SYS_ATTR_HIDDEN0x00000002The file or directory is hidden.

The file is not included in an ordinary directory listing.

FILE_SYS_ATTR_SYSTEM0x00000004A file or directory that the operating system uses a part of, or uses exclusively.

FILE_SYS_ATTR_DIRECTORY0x00000010The entry is a directory.

FILE_SYS_ATTR_ARCHIVE0x00000020The entry is an archive file or directory.

Applications typically use this attribute to mark files for backup or removal.

FILE_SYS_ATTR_NORMAL0x00000080A file doesn't have other attributes set.

This attribute is valid only when used alone.

FILE_SYS_ATTR_TEMPORARY0x00000100A file that is being used for temporary storage.

File systems avoid writing data back to mass storage if sufficient cache memory is available, because typically, an application deletes a temporary file after the handle is closed. In that scenario, the system can entirely avoid writing the data. Otherwise, the data are written after the handle is closed.

FILE_SYS_ATTR_SPARSE_FILE0x00000200A file that is a sparse file.

FILE_SYS_ATTR_REPARSE_POINT0x00000400A file that is a reparse point or a symbolic link.

FILE_SYS_ATTR_COMPRESSED0x00000800A file or directory that is compressed.

For a file, all of the data in the file are compressed. For a directory, compression is the default for newly created files and subdirectories. A filesystem implementation can make use of this attribute by setting the SupportCompressedAttribute property to true and then properly handling the GetFileInfo, EnumerateDirectory, and SetFileAttributes events.

FILE_SYS_ATTR_OFFLINE0x00001000The data of a file are not available immediately.

This attribute indicates that the file data are physically moved to offline storage.

FILE_SYS_ATTR_NOT_CONTENT_INDEXED0x00002000The file or directory is not to be indexed by the content indexing service.

FILE_SYS_ATTR_ENCRYPTED0x00004000A file or directory that is encrypted.

For a file, all data streams in the file are encrypted. For a directory, encryption is the default for newly created files and subdirectories.

Note: This flag is used by NTFS and the OS sends undocumented requests to the filesystem based on this flag. The flag should not be used for files in custom filesystem implementations.

FILE_SYS_ATTR_VIRTUAL0x00010000Reserved.

Note: This flag is reserved by the OS and should not be used for files in custom filesystem implementations.

FILE_SYS_ATTR_RECALL_ON_OPEN0x00040000The file or directory has no physical representation on the local system; the item is virtual.

Opening the item will be more expensive than normal (e.g., it will cause at least some of it to be fetched from a remote store). This flag is reported by filesystems during directory enumerations.

Attributes specifies both the attributes and create/open options for the new file. Some options, such as FILE_FLAG_SEQUENTIAL_SCAN, FILE_FLAG_WRITE_THROUGH, and FILE_FLAG_RANDOM_ACCESS, may be useful for applications that wish to fine-tune their performance. For example, such information could be used to decide whether it is necessary to locally cache some amount of data that is stored remotely.

The ShareMode parameter specifies the access sharing mode desired by the process that initiated the request; it may contain zero or more of the following share mode flags:

FILE_SYS_SHARE_READ0x00000001Enables subsequent open operations on a file to request read access.

Otherwise, other processes cannot open the file if they request read access. If this flag is not specified, but the file has been opened for read access, file creation or opening fails.

FILE_SYS_SHARE_WRITE0x00000002Enables subsequent open operations on a file to request write access.

Otherwise, other processes cannot open the file if they request write access. If this flag is not specified, but the file has been opened for write access or has a file mapping with write access, file creation or opening fails.

FILE_SYS_SHARE_DELETE0x00000004Enables subsequent open operations on a file to request delete access.

Otherwise, other processes cannot open the file if they request delete access. If this flag is not specified, but the file has been opened for delete access, the function fails.

Note: Delete access allows both delete and rename operations.

Please refer to the Windows API's ZwCreateFile function for detailed information about possible values for the DesiredAccess, Attributes, ShareMode, NTCreateDisposition, and NTDesiredAccess parameters.

The FileInfo parameter carries a handle to an object with information about the file. As mentioned earlier, this value should be used if the application chooses to call the RouteToFile method.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

QueryQuotas Event (CBFS Component)

This event fires when the OS needs to read quota information.

Syntax

// CBFSQueryQuotasEventArgs carries the CBFS QueryQuotas event's parameters.
type CBFSQueryQuotasEventArgs struct {...}

func (args *CBFSQueryQuotasEventArgs) SID() []byte
func (args *CBFSQueryQuotasEventArgs) SIDLength() int32
func (args *CBFSQueryQuotasEventArgs) Index() int32
func (args *CBFSQueryQuotasEventArgs) QuotaFound() bool
func (args *CBFSQueryQuotasEventArgs) SetQuotaFound(value bool)

func (args *CBFSQueryQuotasEventArgs) QuotaUsed() int64
func (args *CBFSQueryQuotasEventArgs) SetQuotaUsed(value int64)

func (args *CBFSQueryQuotasEventArgs) QuotaThreshold() int64
func (args *CBFSQueryQuotasEventArgs) SetQuotaThreshold(value int64)

func (args *CBFSQueryQuotasEventArgs) QuotaLimit() int64
func (args *CBFSQueryQuotasEventArgs) SetQuotaLimit(value int64)

func (args *CBFSQueryQuotasEventArgs) SIDOut() []byte
func (args *CBFSQueryQuotasEventArgs) SetSIDOut(value []byte)

func (args *CBFSQueryQuotasEventArgs) SIDOutLength() int32
func (args *CBFSQueryQuotasEventArgs) EnumerationContext() int64
func (args *CBFSQueryQuotasEventArgs) SetEnumerationContext(value int64)

func (args *CBFSQueryQuotasEventArgs) ResultCode() int32
func (args *CBFSQueryQuotasEventArgs) SetResultCode(value int32)

// CBFSQueryQuotasEvent defines the signature of the CBFS QueryQuotas event's handler function.
type CBFSQueryQuotasEvent func(sender *CBFS, args *CBFSQueryQuotasEventArgs)

func (obj *CBFS) GetOnQueryQuotasHandler() CBFSQueryQuotasEvent
func (obj *CBFS) SetOnQueryQuotasHandler(handlerFunc CBFSQueryQuotasEvent)

Remarks

This event fires when the OS needs to read quota information, set during earlier SetQuotas events, for one or more security identifiers (SIDs).

This event needs to be handled only if the UseDiskQuotas property is enabled.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

Quota information is read by the OS in one of two ways. To handle this event properly, applications must be able to handle both kinds of requests by doing the following:

  1. When the OS needs a specific SID's quota information, SID will point to a memory buffer that contains that SID (in binary form, with length SIDLength).
    • If the application has a quota stored for the specified SID, set QuotaFound to true, and return its information by setting QuotaUsed, QuotaThreshold, and QuotaLimit.
    • If the application does not have quota information stored for the SID, set QuotaFound to false and leave the other parameters unchanged.
    • For such requests, Index is always -1, no SIDOut buffer is available, and SIDOutLength is 0.
  2. When the OS needs all of the quota information the application has stored, this event fires with Index set to 0 first, then continues to fire with increasing indices until all quotas have been returned.
    • For each quota the application has stored, set QuotaFound to true, and return its information by setting QuotaUsed, QuotaThreshold, and QuotaLimit. Return the SID associated with the quota by copying it, in binary form, to the memory buffer pointed to by SIDOut. The capacity of the SIDOut buffer is specified by SIDOutLength.
    • If there are more quotas to return, set QuotaFound to false and leave the other parameters unchanged.
    • For such requests, no SID buffer is available, and SIDLength is 0.

Both this event and SetQuotas cause a quota enumeration to be started; the CloseQuotasEnumeration event will fire when the OS has finished reading quota information (this applies for both of the cases described above).

Descriptions of the QuotaUsed, QuotaThreshold, and QuotaLimit parameters can be found in the Windows API's DISKQUOTA_USER_INFORMATION structure documentation.

The EnumerationContext parameter is a placeholder for application-defined data associated with the enumeration. Please refer to the Contexts topic for more information.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

ReadFile Event (CBFS Component)

This event fires when the OS needs to read data from an open file.

Syntax

// CBFSReadFileEventArgs carries the CBFS ReadFile event's parameters.
type CBFSReadFileEventArgs struct {...}

func (args *CBFSReadFileEventArgs) FileName() string
func (args *CBFSReadFileEventArgs) Position() int64
func (args *CBFSReadFileEventArgs) Buffer() []byte
func (args *CBFSReadFileEventArgs) SetBuffer(value []byte)

func (args *CBFSReadFileEventArgs) BytesToRead() int64
func (args *CBFSReadFileEventArgs) BytesRead() int64
func (args *CBFSReadFileEventArgs) SetBytesRead(value int64)

func (args *CBFSReadFileEventArgs) HandleInfo() int64
func (args *CBFSReadFileEventArgs) FileContext() int64
func (args *CBFSReadFileEventArgs) SetFileContext(value int64)

func (args *CBFSReadFileEventArgs) HandleContext() int64
func (args *CBFSReadFileEventArgs) SetHandleContext(value int64)

func (args *CBFSReadFileEventArgs) ResultCode() int32
func (args *CBFSReadFileEventArgs) SetResultCode(value int32)

// CBFSReadFileEvent defines the signature of the CBFS ReadFile event's handler function.
type CBFSReadFileEvent func(sender *CBFS, args *CBFSReadFileEventArgs)

func (obj *CBFS) GetOnReadFileHandler() CBFSReadFileEvent
func (obj *CBFS) SetOnReadFileHandler(handlerFunc CBFSReadFileEvent)

Remarks

This event fires when the OS needs to read data from the already open file specified by FileName.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications should read BytesToRead bytes of data from the specified file into the memory region pointed to by Buffer. Reading must begin at the specified Position in the file, and when reading is complete, applications must set BytesRead to reflect the actual number of bytes copied into Buffer. Applications must not attempt to copy more than BytesToRead bytes of data into Buffer.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

Note: Although it is technically possible for an application to return fewer than BytesToRead bytes of data, doing so is abnormal, and should be avoided. Most processes treat read requests as "all or nothing", so returning less data than requested is likely to cause an ungraceful failure.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken. (This parameter may be absent, in which case it will be 0.)

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information. (HandleContext may be absent, in which case it will be nil.)

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

RenameOrMoveFile Event (CBFS Component)

This event fires when the OS wants to rename or move a file or directory within the virtual filesystem.

Syntax

// CBFSRenameOrMoveFileEventArgs carries the CBFS RenameOrMoveFile event's parameters.
type CBFSRenameOrMoveFileEventArgs struct {...}

func (args *CBFSRenameOrMoveFileEventArgs) FileName() string
func (args *CBFSRenameOrMoveFileEventArgs) NewFileName() string
func (args *CBFSRenameOrMoveFileEventArgs) HandleInfo() int64
func (args *CBFSRenameOrMoveFileEventArgs) FileContext() int64
func (args *CBFSRenameOrMoveFileEventArgs) SetFileContext(value int64)

func (args *CBFSRenameOrMoveFileEventArgs) HandleContext() int64
func (args *CBFSRenameOrMoveFileEventArgs) SetHandleContext(value int64)

func (args *CBFSRenameOrMoveFileEventArgs) ResultCode() int32
func (args *CBFSRenameOrMoveFileEventArgs) SetResultCode(value int32)

// CBFSRenameOrMoveFileEvent defines the signature of the CBFS RenameOrMoveFile event's handler function.
type CBFSRenameOrMoveFileEvent func(sender *CBFS, args *CBFSRenameOrMoveFileEventArgs)

func (obj *CBFS) GetOnRenameOrMoveFileHandler() CBFSRenameOrMoveFileEvent
func (obj *CBFS) SetOnRenameOrMoveFileHandler(handlerFunc CBFSRenameOrMoveFileEvent)

Remarks

This event fires when the OS wants to rename or move the specified file or directory from FileName to NewFileName, both of which are fully qualified and located in the virtual filesystem.

This event fires only if a file or directory with the specified NewFileName does not exist; or if such a file does exist, and an overwrite was requested. Cases in which a file with the specified NewFileName exists, and an overwrite was not requested, are handled by the component internally.

Note: Windows only allows files to be overwritten and denies a rename or move request automatically if the destination is an existing directory.

To handle this event properly, applications must perform any actions needed to rename or move the specified file or directory in their backend storage, overwriting the destination file if necessary. An application may also, for its own reasons, decide not to overwrite a destination file, in which case it must deny the operation by returning an appropriate error code via ResultCode.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

When the FastRenameMove configuration setting is disabled, any handles to the file being renamed are closed before the rename operation and re-opened after the operation. If the rename operation fails, then the file handles are re-opened using the old name. If any of re-open operations fail, the re-opening process is stopped, and any handles that have been re-opened already are closed again.

In any case, the value specified by the ResultCode parameter is passed back to the system.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

Note: If the FastRenameMove config setting is disabled, all handles would be closed before the event fires; so, both HandleInfo, FileContext, and HandleContext will be empty. To receive the correct values in these parameters, you need to enable the FastRenameMove config setting.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetAllocationSize Event (CBFS Component)

This event fires when the OS needs to set a file's allocation size.

Syntax

// CBFSSetAllocationSizeEventArgs carries the CBFS SetAllocationSize event's parameters.
type CBFSSetAllocationSizeEventArgs struct {...}

func (args *CBFSSetAllocationSizeEventArgs) FileName() string
func (args *CBFSSetAllocationSizeEventArgs) AllocationSize() int64
func (args *CBFSSetAllocationSizeEventArgs) HandleInfo() int64
func (args *CBFSSetAllocationSizeEventArgs) FileContext() int64
func (args *CBFSSetAllocationSizeEventArgs) SetFileContext(value int64)

func (args *CBFSSetAllocationSizeEventArgs) HandleContext() int64
func (args *CBFSSetAllocationSizeEventArgs) SetHandleContext(value int64)

func (args *CBFSSetAllocationSizeEventArgs) ResultCode() int32
func (args *CBFSSetAllocationSizeEventArgs) SetResultCode(value int32)

// CBFSSetAllocationSizeEvent defines the signature of the CBFS SetAllocationSize event's handler function.
type CBFSSetAllocationSizeEvent func(sender *CBFS, args *CBFSSetAllocationSizeEventArgs)

func (obj *CBFS) GetOnSetAllocationSizeHandler() CBFSSetAllocationSizeEvent
func (obj *CBFS) SetOnSetAllocationSizeHandler(handlerFunc CBFSSetAllocationSizeEvent)

Remarks

This event fires when the OS (or the component, if the CorrectAllocationSizes configuration setting is enabled) needs to set the allocation size of the file specified by FileName. All files have the following three sizes associated with them:

Description Associated Event
File size The length, in bytes, of the file's contents. SetFileSize
Allocation size The number of bytes allocated locally for the file. SetAllocationSize
Valid data length The number of bytes that have been written to the file. SetValidDataLength

To handle this event properly, applications must perform any actions needed to allocate the specified amount of space for the file in their backend storage.

Note: The file's actual size should not be changed; applications that do not track allocation size separately from file size should do nothing.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The AllocationSize parameter specifies the new allocation size of the file, in bytes. This value is typically larger than the file's actual size, as some file operations reserve space for the file before any data are actually written. Applications should track such situations and avoid reallocating file space when possible to improve performance.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken. (This parameter may be absent, in which case it will be 0.)

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information. (HandleContext may be absent, in which case it will be nil.)

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetDefaultQuotaInfo Event (CBFS Component)

This event fires when the OS needs to set the virtual drive's default quota information.

Syntax

// CBFSSetDefaultQuotaInfoEventArgs carries the CBFS SetDefaultQuotaInfo event's parameters.
type CBFSSetDefaultQuotaInfoEventArgs struct {...}

func (args *CBFSSetDefaultQuotaInfoEventArgs) DefaultQuotaThreshold() int64
func (args *CBFSSetDefaultQuotaInfoEventArgs) DefaultQuotaLimit() int64
func (args *CBFSSetDefaultQuotaInfoEventArgs) FileSystemControlFlags() int64
func (args *CBFSSetDefaultQuotaInfoEventArgs) ResultCode() int32
func (args *CBFSSetDefaultQuotaInfoEventArgs) SetResultCode(value int32)

// CBFSSetDefaultQuotaInfoEvent defines the signature of the CBFS SetDefaultQuotaInfo event's handler function.
type CBFSSetDefaultQuotaInfoEvent func(sender *CBFS, args *CBFSSetDefaultQuotaInfoEventArgs)

func (obj *CBFS) GetOnSetDefaultQuotaInfoHandler() CBFSSetDefaultQuotaInfoEvent
func (obj *CBFS) SetOnSetDefaultQuotaInfoHandler(handlerFunc CBFSSetDefaultQuotaInfoEvent)

Remarks

This event fires when the OS needs to set the virtual drive's default quota information.

This event needs to be handled only if the UseDiskQuotas property is enabled.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must store the virtual drive's default quota information using the value specified by DefaultQuotaThreshold, DefaultQuotaLimit, and FileSystemControlFlags.

Descriptions of the DefaultQuotaThreshold, DefaultQuotaLimit, and FileSystemControlFlags parameters can be found in the Windows API's FILE_FS_CONTROL_INFORMATION structure documentation.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetFileAttributes Event (CBFS Component)

This event fires when the OS needs to change the attributes of an open file or directory.

Syntax

// CBFSSetFileAttributesEventArgs carries the CBFS SetFileAttributes event's parameters.
type CBFSSetFileAttributesEventArgs struct {...}

func (args *CBFSSetFileAttributesEventArgs) FileName() string
func (args *CBFSSetFileAttributesEventArgs) CreationTime() time.Time
func (args *CBFSSetFileAttributesEventArgs) LastAccessTime() time.Time
func (args *CBFSSetFileAttributesEventArgs) LastWriteTime() time.Time
func (args *CBFSSetFileAttributesEventArgs) ChangeTime() time.Time
func (args *CBFSSetFileAttributesEventArgs) Attributes() int32
func (args *CBFSSetFileAttributesEventArgs) HandleInfo() int64
func (args *CBFSSetFileAttributesEventArgs) FileContext() int64
func (args *CBFSSetFileAttributesEventArgs) SetFileContext(value int64)

func (args *CBFSSetFileAttributesEventArgs) HandleContext() int64
func (args *CBFSSetFileAttributesEventArgs) SetHandleContext(value int64)

func (args *CBFSSetFileAttributesEventArgs) ResultCode() int32
func (args *CBFSSetFileAttributesEventArgs) SetResultCode(value int32)

// CBFSSetFileAttributesEvent defines the signature of the CBFS SetFileAttributes event's handler function.
type CBFSSetFileAttributesEvent func(sender *CBFS, args *CBFSSetFileAttributesEventArgs)

func (obj *CBFS) GetOnSetFileAttributesHandler() CBFSSetFileAttributesEvent
func (obj *CBFS) SetOnSetFileAttributesHandler(handlerFunc CBFSSetFileAttributesEvent)

Remarks

This event fires when the OS needs to change the attributes of the already-open file or directory specified by FileName.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must update the attributes of the specified file or directory in their backend storage using the following parameters:

  • Attributes: The new attributes of the file or directory, or 0 to indicate that the existing attributes must remain unchanged.
    • FILE_ATTRIBUTE_NORMAL: This attribute is valid only when used alone; it "resets" a file's attributes.
    • Please refer to Microsoft's File Attribute Constants article for attribute descriptions.
    If the SupportCompressedAttribute property is set to true, an event handler should properly handle the presence or absence of the FILE_ATTRIBUTE_COMPRESSED in the Attributes parameter, possibly compressing or decompressing the file.
  • CreationTime, LastAccessTime, LastWriteTime, ChangeTime: The new time values for the file or directory, any of which may be January 1, 1601 00:00:00 UTC to indicate that the existing value of the corresponding time must remain unchanged.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetFileSecurity Event (CBFS Component)

This event fires when the OS wants to change the Windows security attributes of a file or directory.

Syntax

// CBFSSetFileSecurityEventArgs carries the CBFS SetFileSecurity event's parameters.
type CBFSSetFileSecurityEventArgs struct {...}

func (args *CBFSSetFileSecurityEventArgs) FileName() string
func (args *CBFSSetFileSecurityEventArgs) SecurityInformation() int32
func (args *CBFSSetFileSecurityEventArgs) SecurityDescriptor() []byte
func (args *CBFSSetFileSecurityEventArgs) Length() int32
func (args *CBFSSetFileSecurityEventArgs) HandleInfo() int64
func (args *CBFSSetFileSecurityEventArgs) FileContext() int64
func (args *CBFSSetFileSecurityEventArgs) SetFileContext(value int64)

func (args *CBFSSetFileSecurityEventArgs) HandleContext() int64
func (args *CBFSSetFileSecurityEventArgs) SetHandleContext(value int64)

func (args *CBFSSetFileSecurityEventArgs) ResultCode() int32
func (args *CBFSSetFileSecurityEventArgs) SetResultCode(value int32)

// CBFSSetFileSecurityEvent defines the signature of the CBFS SetFileSecurity event's handler function.
type CBFSSetFileSecurityEvent func(sender *CBFS, args *CBFSSetFileSecurityEventArgs)

func (obj *CBFS) GetOnSetFileSecurityHandler() CBFSSetFileSecurityEvent
func (obj *CBFS) SetOnSetFileSecurityHandler(handlerFunc CBFSSetFileSecurityEvent)

Remarks

This event fires when the OS wants to change the Windows security attributes of the file or directory specified by FileName.

This event needs to be handled only if the UseWindowsSecurity property is enabled.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must update the pieces of security information, specified by SecurityInformation, on the specified file or directory in their backend storage. Please refer to the following parameter descriptions, as well as the Security Checks topic, for more information.

The SecurityInformation parameter indicates which pieces of security information must be set. This value is a bitfield; possible flags include (but are not limited to):

  • OWNER_SECURITY_INFORMATION
  • GROUP_SECURITY_INFORMATION
  • DACL_SECURITY_INFORMATION
  • SACL_SECURITY_INFORMATION
Please refer to Microsoft's SECURITY_INFORMATION data-type documentation for more information about possible values.

The SecurityDescriptor parameter points to a memory buffer that contains data indicated by SecurityInformation. The data are formatted as a SECURITY_DESCRIPTOR structure in self-relative format. Please refer to those articles for more information about self-relative security descriptors.

The Length parameter specifies the length, in bytes, of SecurityDescriptor.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetFileSize Event (CBFS Component)

This event fires when the OS needs to change the size of an open file.

Syntax

// CBFSSetFileSizeEventArgs carries the CBFS SetFileSize event's parameters.
type CBFSSetFileSizeEventArgs struct {...}

func (args *CBFSSetFileSizeEventArgs) FileName() string
func (args *CBFSSetFileSizeEventArgs) Size() int64
func (args *CBFSSetFileSizeEventArgs) HandleInfo() int64
func (args *CBFSSetFileSizeEventArgs) FileContext() int64
func (args *CBFSSetFileSizeEventArgs) SetFileContext(value int64)

func (args *CBFSSetFileSizeEventArgs) HandleContext() int64
func (args *CBFSSetFileSizeEventArgs) SetHandleContext(value int64)

func (args *CBFSSetFileSizeEventArgs) ResultCode() int32
func (args *CBFSSetFileSizeEventArgs) SetResultCode(value int32)

// CBFSSetFileSizeEvent defines the signature of the CBFS SetFileSize event's handler function.
type CBFSSetFileSizeEvent func(sender *CBFS, args *CBFSSetFileSizeEventArgs)

func (obj *CBFS) GetOnSetFileSizeHandler() CBFSSetFileSizeEvent
func (obj *CBFS) SetOnSetFileSizeHandler(handlerFunc CBFSSetFileSizeEvent)

Remarks

This event fires when the OS needs to change the size of the already-open file specified by FileName. All files have the following three sizes associated with them:

Description Associated Event
File size The length, in bytes, of the file's contents. SetFileSize
Allocation size The number of bytes allocated locally for the file. SetAllocationSize
Valid data length The number of bytes that have been written to the file. SetValidDataLength

To handle this event properly, applications must perform any actions needed to resize the specified file in their backend storage.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The Size parameter specifies the new size of the file, in bytes. Extending a file does not require actual space to be allocated; however, NTFS allocates and zeroes the newly added space, and some third-party applications might expect such behavior if the virtual filesystem is identified (via FileSystemName) as NTFS.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetQuotas Event (CBFS Component)

This event fires when the OS needs to update quota information.

Syntax

// CBFSSetQuotasEventArgs carries the CBFS SetQuotas event's parameters.
type CBFSSetQuotasEventArgs struct {...}

func (args *CBFSSetQuotasEventArgs) SID() []byte
func (args *CBFSSetQuotasEventArgs) SIDLength() int32
func (args *CBFSSetQuotasEventArgs) RemoveQuota() bool
func (args *CBFSSetQuotasEventArgs) QuotaFound() bool
func (args *CBFSSetQuotasEventArgs) SetQuotaFound(value bool)

func (args *CBFSSetQuotasEventArgs) QuotaUsed() int64
func (args *CBFSSetQuotasEventArgs) QuotaThreshold() int64
func (args *CBFSSetQuotasEventArgs) QuotaLimit() int64
func (args *CBFSSetQuotasEventArgs) EnumerationContext() int64
func (args *CBFSSetQuotasEventArgs) SetEnumerationContext(value int64)

func (args *CBFSSetQuotasEventArgs) ResultCode() int32
func (args *CBFSSetQuotasEventArgs) SetResultCode(value int32)

// CBFSSetQuotasEvent defines the signature of the CBFS SetQuotas event's handler function.
type CBFSSetQuotasEvent func(sender *CBFS, args *CBFSSetQuotasEventArgs)

func (obj *CBFS) GetOnSetQuotasHandler() CBFSSetQuotasEvent
func (obj *CBFS) SetOnSetQuotasHandler(handlerFunc CBFSSetQuotasEvent)

Remarks

This event fires when the OS needs to set, update, or remove quota information for the security identifier specified by SID. If quota information needs to be set/updated/removed for multiple security identifiers (SIDs), this event will fire multiple times in succession.

This event needs to be handled only if the UseDiskQuotas property is enabled.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must either store or remove the quota information for the security identifier specified by SID:

  • If RemoveQuota is false, set or update the SID's quota information using the values specified by QuotaUsed, QuotaFound, and QuotaLimit.
  • If RemoveQuota is true, and the application has quota information stored for the SID, remove that information and set QuotaFound to true. If the application does not have quota information stored for the SID, set QuotaFound to false.
Both this event and QueryQuotas cause a quota enumeration to be started; the CloseQuotasEnumeration event will fire when the OS has finished setting/updating/removing quota information.

Descriptions of the QuotaUsed, QuotaThreshold, and QuotaLimit parameters can be found in the Windows API's DISKQUOTA_USER_INFORMATION structure documentation.

The EnumerationContext parameter is a placeholder for application-defined data associated with the enumeration. Please refer to the Contexts topic for more information.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetReparsePoint Event (CBFS Component)

This event fires when the OS wants to create or update a reparse point on a file or directory.

Syntax

// CBFSSetReparsePointEventArgs carries the CBFS SetReparsePoint event's parameters.
type CBFSSetReparsePointEventArgs struct {...}

func (args *CBFSSetReparsePointEventArgs) FileName() string
func (args *CBFSSetReparsePointEventArgs) ReparseTag() int64
func (args *CBFSSetReparsePointEventArgs) ReparseBuffer() []byte
func (args *CBFSSetReparsePointEventArgs) ReparseBufferLength() int32
func (args *CBFSSetReparsePointEventArgs) HandleInfo() int64
func (args *CBFSSetReparsePointEventArgs) FileContext() int64
func (args *CBFSSetReparsePointEventArgs) SetFileContext(value int64)

func (args *CBFSSetReparsePointEventArgs) HandleContext() int64
func (args *CBFSSetReparsePointEventArgs) SetHandleContext(value int64)

func (args *CBFSSetReparsePointEventArgs) ResultCode() int32
func (args *CBFSSetReparsePointEventArgs) SetResultCode(value int32)

// CBFSSetReparsePointEvent defines the signature of the CBFS SetReparsePoint event's handler function.
type CBFSSetReparsePointEvent func(sender *CBFS, args *CBFSSetReparsePointEventArgs)

func (obj *CBFS) GetOnSetReparsePointHandler() CBFSSetReparsePointEvent
func (obj *CBFS) SetOnSetReparsePointHandler(handlerFunc CBFSSetReparsePointEvent)

Remarks

This event fires when the OS wants to create or update a reparse point on the file or directory specified by FileName.

This event needs to be handled only if the UseReparsePoints property is enabled.

Note: Network file sharing (NFS) makes use of reparse points.

To handle this event properly, applications must store the given reparse point data and tag, and associate them with the specified file or directory, in their backend storage. Both pieces of information are needed for the application to correctly handle any future GetFileInfo and EnumerateDirectory events concerning the specified file or directory.

Please refer to the Reparse Points topic for more information.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The ReparseTag parameter specifies the reparse point's tag, which is the value the system uses to identify the format of the reparse point data. This value is also present in the ReparseBuffer data; the component extracts it and provides it separately for convenience.

The ReparseBuffer parameter points to a memory buffer that contains the full reparse point data. The ReparseBufferLength parameter specifies the length, in bytes, of ReparseBuffer.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetValidDataLength Event (CBFS Component)

This event fires when the OS needs to set a file's valid data length.

Syntax

// CBFSSetValidDataLengthEventArgs carries the CBFS SetValidDataLength event's parameters.
type CBFSSetValidDataLengthEventArgs struct {...}

func (args *CBFSSetValidDataLengthEventArgs) FileName() string
func (args *CBFSSetValidDataLengthEventArgs) ValidDataLength() int64
func (args *CBFSSetValidDataLengthEventArgs) HandleInfo() int64
func (args *CBFSSetValidDataLengthEventArgs) FileContext() int64
func (args *CBFSSetValidDataLengthEventArgs) SetFileContext(value int64)

func (args *CBFSSetValidDataLengthEventArgs) HandleContext() int64
func (args *CBFSSetValidDataLengthEventArgs) SetHandleContext(value int64)

func (args *CBFSSetValidDataLengthEventArgs) ResultCode() int32
func (args *CBFSSetValidDataLengthEventArgs) SetResultCode(value int32)

// CBFSSetValidDataLengthEvent defines the signature of the CBFS SetValidDataLength event's handler function.
type CBFSSetValidDataLengthEvent func(sender *CBFS, args *CBFSSetValidDataLengthEventArgs)

func (obj *CBFS) GetOnSetValidDataLengthHandler() CBFSSetValidDataLengthEvent
func (obj *CBFS) SetOnSetValidDataLengthHandler(handlerFunc CBFSSetValidDataLengthEvent)

Remarks

This event fires when the OS needs to set the valid data length of the file specified by FileName. All files have the following three sizes associated with them:

Description Associated Event
File size The length, in bytes, of the file's contents. SetFileSize
Allocation size The number of bytes allocated locally for the file. SetAllocationSize
Valid data length The number of bytes that have been written to the file. SetValidDataLength

Typically, a file's valid data length is explicitly changed only when a process wishes to quickly allocate large amounts of storage space. In such cases, the SetFileSize event will fire first to set the desired file size, and then this event will fire to inform the virtual filesystem that it does not need to fill that space with zeros. Please refer to the Windows API's SetFileValidData function documentation for more information.

To handle this event properly, applications must perform any actions needed to update the specified file's valid data length.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The ValidDataLength parameter specifies the new valid data length, in bytes, for the file. This is the same value as passed to the Windows API's SetFileValidData function.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken. (This parameter may be absent, in which case it will be 0.)

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information. (HandleContext may be absent, in which case it will be nil.)

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetVolumeLabel Event (CBFS Component)

This event fires when the OS wants to change the volume label.

Syntax

// CBFSSetVolumeLabelEventArgs carries the CBFS SetVolumeLabel event's parameters.
type CBFSSetVolumeLabelEventArgs struct {...}

func (args *CBFSSetVolumeLabelEventArgs) VolumeLabel() string
func (args *CBFSSetVolumeLabelEventArgs) ResultCode() int32
func (args *CBFSSetVolumeLabelEventArgs) SetResultCode(value int32)

// CBFSSetVolumeLabelEvent defines the signature of the CBFS SetVolumeLabel event's handler function.
type CBFSSetVolumeLabelEvent func(sender *CBFS, args *CBFSSetVolumeLabelEventArgs)

func (obj *CBFS) GetOnSetVolumeLabelHandler() CBFSSetVolumeLabelEvent
func (obj *CBFS) SetOnSetVolumeLabelHandler(handlerFunc CBFSSetVolumeLabelEvent)

Remarks

This event fires when the OS wants to change the volume label of the virtual drive.

To handle this event properly, applications must store the new volume label specified by VolumeLabel.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

SetVolumeObjectId Event (CBFS Component)

This event fires when the OS needs to set the volume object Id and extended information.

Syntax

// CBFSSetVolumeObjectIdEventArgs carries the CBFS SetVolumeObjectId event's parameters.
type CBFSSetVolumeObjectIdEventArgs struct {...}

func (args *CBFSSetVolumeObjectIdEventArgs) ObjectId() []byte
func (args *CBFSSetVolumeObjectIdEventArgs) ObjectIdLength() int32
func (args *CBFSSetVolumeObjectIdEventArgs) ExtendedInformation() []byte
func (args *CBFSSetVolumeObjectIdEventArgs) ExtendedInformationLength() int32
func (args *CBFSSetVolumeObjectIdEventArgs) ResultCode() int32
func (args *CBFSSetVolumeObjectIdEventArgs) SetResultCode(value int32)

// CBFSSetVolumeObjectIdEvent defines the signature of the CBFS SetVolumeObjectId event's handler function.
type CBFSSetVolumeObjectIdEvent func(sender *CBFS, args *CBFSSetVolumeObjectIdEventArgs)

func (obj *CBFS) GetOnSetVolumeObjectIdHandler() CBFSSetVolumeObjectIdEvent
func (obj *CBFS) SetOnSetVolumeObjectIdHandler(handlerFunc CBFSSetVolumeObjectIdEvent)

Remarks

This event fires when the OS needs to set the volume object Id and extended information for the virtual drive.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications must store the values specified by ObjectId and ExtendedInformation.

The ObjectIdLength and ExtendedInformationLength values are specified by the OS; they will always be 16 and 48 bytes, respectively.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

UnlockFile Event (CBFS Component)

This event fires when the OS needs to unlock a range of bytes in a file.

Syntax

// CBFSUnlockFileEventArgs carries the CBFS UnlockFile event's parameters.
type CBFSUnlockFileEventArgs struct {...}

func (args *CBFSUnlockFileEventArgs) FileName() string
func (args *CBFSUnlockFileEventArgs) ByteOffset() int64
func (args *CBFSUnlockFileEventArgs) Length() int64
func (args *CBFSUnlockFileEventArgs) Key() int32
func (args *CBFSUnlockFileEventArgs) HandleInfo() int64
func (args *CBFSUnlockFileEventArgs) FileContext() int64
func (args *CBFSUnlockFileEventArgs) SetFileContext(value int64)

func (args *CBFSUnlockFileEventArgs) HandleContext() int64
func (args *CBFSUnlockFileEventArgs) SetHandleContext(value int64)

func (args *CBFSUnlockFileEventArgs) ResultCode() int32
func (args *CBFSUnlockFileEventArgs) SetResultCode(value int32)

// CBFSUnlockFileEvent defines the signature of the CBFS UnlockFile event's handler function.
type CBFSUnlockFileEvent func(sender *CBFS, args *CBFSUnlockFileEventArgs)

func (obj *CBFS) GetOnUnlockFileHandler() CBFSUnlockFileEvent
func (obj *CBFS) SetOnUnlockFileHandler(handlerFunc CBFSUnlockFileEvent)

Remarks

This event fires when the OS needs to unlock a range of bytes in the file specified by FileName. Typically, such requests originate from the Windows API's UnlockFile and UnlockFileEx functions.

This event is optional. The CBFS component automatically manages file locks in the virtual filesystem. So, if the resources an application uses for backend storage (e.g., files, memory, a database) are never directly accessed by anything other than the application itself, then there is no reason to implement this event.

If, however, an application's backend storage involves shared resources (i.e., those that could be accessed by something other than the application at any time), then this event should be used to perform any actions needed to propagate the unlock request.

For example, if an application's backend storage implementation involves files stored on a network server, then the unlock request should be communicated to that server.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

Applications that implement this event must also implement the LockFile event.

The ByteOffset and Length parameters specify the starting position of the range being unlocked, and the length of that range, respectively. If both values are set to -1, the system has sent IRP_MN_UNLOCK_ALL request and all regions must be unlocked. The latter behavior is used only when the SupportUnlockAllRequests configuration setting is explicitly enabled by the application.

The Key parameter reflects the key that the byte range lock is associated with. This key is used to identify the byte range lock. The value is the same that was passed in the Lock request that locked the region, which currently is unlocked using this request.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken.

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

Note: The OS does not expect the file unlock request to fail and ignores the error code that is returned by the component.

Unmount Event (CBFS Component)

This event fires after the component unmounts media from the virtual drive, making it unavailable.

Syntax

// CBFSUnmountEventArgs carries the CBFS Unmount event's parameters.
type CBFSUnmountEventArgs struct {...}

func (args *CBFSUnmountEventArgs) ResultCode() int32
func (args *CBFSUnmountEventArgs) SetResultCode(value int32)

// CBFSUnmountEvent defines the signature of the CBFS Unmount event's handler function.
type CBFSUnmountEvent func(sender *CBFS, args *CBFSUnmountEventArgs)

func (obj *CBFS) GetOnUnmountHandler() CBFSUnmountEvent
func (obj *CBFS) SetOnUnmountHandler(handlerFunc CBFSUnmountEvent)

Remarks

This event fires once the component has unmounted media from the virtual drive, making it unavailable. Please refer to UnmountMedia and DeleteStorage for more information.

This event is optional; it is provided to give applications a chance to perform additional processing when the virtual filesystem becomes unavailable.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

WorkerThreadCreation Event (CBFS Component)

Fires just after a new worker thread is created.

Syntax

// CBFSWorkerThreadCreationEventArgs carries the CBFS WorkerThreadCreation event's parameters.
type CBFSWorkerThreadCreationEventArgs struct {...}

func (args *CBFSWorkerThreadCreationEventArgs) ResultCode() int32
func (args *CBFSWorkerThreadCreationEventArgs) SetResultCode(value int32)

// CBFSWorkerThreadCreationEvent defines the signature of the CBFS WorkerThreadCreation event's handler function.
type CBFSWorkerThreadCreationEvent func(sender *CBFS, args *CBFSWorkerThreadCreationEventArgs)

func (obj *CBFS) GetOnWorkerThreadCreationHandler() CBFSWorkerThreadCreationEvent
func (obj *CBFS) SetOnWorkerThreadCreationHandler(handlerFunc CBFSWorkerThreadCreationEvent)

Remarks

This event fires just after a worker thread is created, in the context of that worker thread.

This event is optional; it is provided to give applications a chance to perform additional processing when a new worker thread is created, such as allocating per-thread objects.

The component maintains a pool of worker threads and uses them to fire events; please refer to the Threading and Concurrency topic for more information.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

WorkerThreadTermination Event (CBFS Component)

Fires just before a worker thread is terminated.

Syntax

// CBFSWorkerThreadTerminationEventArgs carries the CBFS WorkerThreadTermination event's parameters.
type CBFSWorkerThreadTerminationEventArgs struct {...}

// CBFSWorkerThreadTerminationEvent defines the signature of the CBFS WorkerThreadTermination event's handler function.
type CBFSWorkerThreadTerminationEvent func(sender *CBFS, args *CBFSWorkerThreadTerminationEventArgs)

func (obj *CBFS) GetOnWorkerThreadTerminationHandler() CBFSWorkerThreadTerminationEvent
func (obj *CBFS) SetOnWorkerThreadTerminationHandler(handlerFunc CBFSWorkerThreadTerminationEvent)

Remarks

This event fires just before a worker thread is terminated, in the context of that worker thread.

This event is optional; it is provided to give applications a chance to perform additional processing before a worker thread is terminated, such as deallocating per-thread objects.

The component maintains a pool of worker threads and uses them to fire events; please refer to the Threading and Concurrency topic for more information.

Any errors that occur during this event are ignored.

WriteFile Event (CBFS Component)

This event fires when the OS needs to write data to an open file.

Syntax

// CBFSWriteFileEventArgs carries the CBFS WriteFile event's parameters.
type CBFSWriteFileEventArgs struct {...}

func (args *CBFSWriteFileEventArgs) FileName() string
func (args *CBFSWriteFileEventArgs) Position() int64
func (args *CBFSWriteFileEventArgs) Buffer() []byte
func (args *CBFSWriteFileEventArgs) BytesToWrite() int64
func (args *CBFSWriteFileEventArgs) BytesWritten() int64
func (args *CBFSWriteFileEventArgs) SetBytesWritten(value int64)

func (args *CBFSWriteFileEventArgs) HandleInfo() int64
func (args *CBFSWriteFileEventArgs) FileContext() int64
func (args *CBFSWriteFileEventArgs) SetFileContext(value int64)

func (args *CBFSWriteFileEventArgs) HandleContext() int64
func (args *CBFSWriteFileEventArgs) SetHandleContext(value int64)

func (args *CBFSWriteFileEventArgs) ResultCode() int32
func (args *CBFSWriteFileEventArgs) SetResultCode(value int32)

// CBFSWriteFileEvent defines the signature of the CBFS WriteFile event's handler function.
type CBFSWriteFileEvent func(sender *CBFS, args *CBFSWriteFileEventArgs)

func (obj *CBFS) GetOnWriteFileHandler() CBFSWriteFileEvent
func (obj *CBFS) SetOnWriteFileHandler(handlerFunc CBFSWriteFileEvent)

Remarks

This event fires when the OS needs to write data to the already-open file specified by FileName.

IMPORTANT: Not everything is possible or allowed in the event handlers. Please see the Event Handling topic for details.

To handle this event properly, applications should write BytesToWrite bytes of data to the specified file, copying it from the memory region pointed to by Buffer. Writing must begin at the specified Position in the file, and when writing is complete, applications must set BytesWritten to reflect the actual number of bytes written to the file. Applications must not attempt to copy more than BytesToWrite bytes of data from Buffer.

Please see the Buffer Parameters topic for more information on how to work with memory buffer event parameters.

Note: Although it is technically possible for an application to write fewer than BytesToWrite bytes of data, doing so is abnormal, and should be avoided. Most processes treat write requests as "all or nothing", so writing less data than requested is likely to cause an ungraceful failure.

The HandleInfo parameter carries a handle to an object with information about the file handle. While within the event handler, it can be used to call any of the following methods: GetHandleCreatorProcessId, GetHandleCreatorProcessName, GetHandleCreatorThreadId, or GetHandleCreatorToken. (This parameter may be absent, in which case it will be 0.)

The FileContext and HandleContext parameters are placeholders for application-defined data associated with the file and specific handle, respectively. Please refer to the Contexts topic for more information. (HandleContext may be absent, in which case it will be nil.)

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource is not available or security checks failed), set it to a nonzero value to report an appropriate error. Please see the Error Reporting and Handling topic for more information.

Note: In most cases, the event is fired when the cache needs to write the data to the filesystem. This happens asynchronously, later than process(es) called the WriteFile() function or alternatives. For such asynchronous write events, the result code returned by the event handler does not get back to the process or processes that wrote the data.

Config Settings (CBFS Component)

The component accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the component, access to these internal properties is provided through the Config method.

CBFS Config Settings

AllowOriginatorBufferMapping:   Whether read file, write file, and enumerate directory requests may pass original buffers to event handlers.

When firing the ReadFile, WriteFile, and EnumerateDirectory events, the driver can do one of two things:

  1. Map the original buffer from the underlying request into the application's address space, and pass it to the event handler directly.
  2. Allocate an intermediary buffer to pass to the event handler, and copy the data between it and the original buffer as needed.

The first option is faster because no data copying occurs. However, it also causes the event timeout mechanism to be disabled for a particular event fired for the request. The lack of event timeout means that the driver cannot complete the underlying request until the event handler returns, which can lead to situations in which the filesystem (or the operating system itself) becomes "stuck" because it is blocked by the event handler.

By default, this configuration setting is enabled, and the driver will map the original buffer into the application's address space and pass it to the event handler directly, if possible. (An intermediary buffer is always used if the original buffer's data length is not a multiple of the memory page size, or if the offset of the buffer is not aligned to the page boundary.)

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

AllowReadOutsideEof:   Whether read requests beyond the end of a file are surfaced, or automatically denied.

This configuration setting specifies whether read requests beyond the end of a file are surfaced through the ReadFile event, or automatically denied by the driver.

By default, this configuration setting is disabled, and the driver will automatically deny read requests beyond the end of a file by returning the appropriate error.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

AlwaysFireIsDirectoryEmpty:   Specifies whether the IsDirectoryEmpty event should fire even when the driver has the needed information.

This configuration setting specifies how the driver should act in regard to a deletion when it needs to check if the directory is empty. When the setting is disabled (default), the driver checks the metadata cache to figure out if a directory contains files, which increases performance. Enable this configuration setting to make IsDirectoryEmpty fire unconditionally.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

AsyncDeleteStorageNotifications:   Whether system broadcasts for virtual drive deletion are sent asynchronously.

This setting specifies whether the WM_DEVICECHANGE broadcast is sent asynchronously (true) or synchronously (false) when the virtual drive is deleted using DeleteStorage.

By default, this setting is enabled, and the broadcast is sent asynchronously. This is typically sufficient, but applications may disable this setting if they find that Windows Explorer is still presenting virtual drives as available after they've been deleted (which may occur if the application exits immediately after deleting a virtual drive).

CacheDuringLockGetSize:   Specifies whether the file size should be requested via the GetFileInfo event when a file is locked.

This configuration setting enables the supplementary driver behavior when the range of file data is locked by an application. By default, the setting is disabled. When the setting is enabled, the driver fires the GetFileInfo event and updates the size information stored in the system shortly after locking is completed.

This setting is effective when any type of file data cache is used.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

CacheDuringLockPurge:   Specifies the strategy of handling the cached data when a file is locked.

When a file is locked, some scenarios may require the cache to flush and/or purge the data of the locked region or of the file in whole. The possible values are

  • 0 - None: Do nothing in regard to the cached data. Note: - if the CacheDuringLockGetSize setting is enabled and the change of file size is detected, the cache manager may decide to flush or purge the data.
  • 1 - Flush and Purge Range: Causes the driver to flush the range being locked, then remove this data from the cache.
  • 2 - Flush and Purge All: Causes the driver to flush all file data that are kept in the cache, then remove them from the cache.
  • 3 - Purge Range: Causes the driver to discard the range of data being locked and remove it from the cache.

This setting is effective when any type of file data cache is used.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

ClusterSize:   The cluster size to create the virtual drive with.

This configuration setting specifies the number of bytes each cluster on the virtual drive contains; it must either be set to a multiple of SectorSize, or 0 to use the same value as SectorSize.

All filesystems in Windows organize hard drive storage space based on cluster size (also known as "allocation unit size"). Cluster size represents the smallest amount of storage space that can be used to hold a file. Common cluster sizes for FAT and NTFS filesystems are 4096, 8192, and 16384 bytes.

The component does not use this value for any purpose besides passing it to the OS. Some applications use a drive's cluster size to calculate the size of the buffer used to transfer data in read/write operations. Increasing the cluster size may reduce the number of times the ReadFile and WriteFile events fire for such applications.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

CorrectAllocationSizes:   Whether to perform automatic allocation size correction.

This configuration setting specifies whether the component should perform automatic allocation size correction. Allocation size measures how many bytes of storage are actually used to hold a file, and typically a file's allocation size is greater than or equal to its actual size.

However, thanks to the flexibility of CBFS-based virtual filesystems, it is possible for a file's data to be stored remotely, with only a portion of it available locally. In such cases, a file's allocation size may indeed be less than its actual size, because the allocation size tracks the amount of local storage that has been allocated for a file.

The component internally caches the allocation size of each file that is currently open. If this configuration setting is enabled (default), the component automatically corrects the known allocation size to be greater than the file's actual size when necessary. The SetAllocationSize event is fired any time this occurs.

Applications can disable this configuration setting to prevent the component from automatically adjusting the allocation sizes they report. When this configuration setting is disabled, and an application changes a file's allocation size, it must call the NotifyDirectoryChange method using the CBFS_NOTIFY_FLAG_ALLOCATION_SIZE_MODIFIED flag to inform the component and the OS of the change.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

DockerContainerId:   Id of the running Docker container, in which the virtual drive should be created.

This configuration setting is optional and is used when an application running on the host needs to create a drive in a container. This configuration setting is applicable only when calling AddMountingPoint and RemoveMountingPoint.

The value should be either the 12-character short Id, for example 4c01db0b339c, the full 64-character Id of the container, or the GUID of the Windows container in registry format.

This setting is not needed when the application is running within a container. Set this value only when the application is running on the host machine.

Querying this setting when a value has not yet been specified will return an empty string if the process is running on the host, or the GUID of the container if the process is running within a container. This may be used as a mechanism to determine whether the application is running on the host, or within a container. If a value has previously been set, querying this setting will return the value that was originally specified.

FastRenameMove:   Whether open files are closed and re-opened during a rename or move operation.

This configuration setting specifies whether, for open files, the component should close and reopen them as part of the overall rename or move operation. (This configuration setting does not affect the process of renaming or moving closed files.)

When this configuration setting is enabled, the component performs rename and move operations on open files the same way the system does: the file is opened, renamed or moved, and then closed. The sequence of events is as follows:

  1. The file is opened one or more times by the OS, causing the CreateFile and/or OpenFile events to fire.
  2. <...Other events may fire...>
  3. The file is renamed, causing the RenameOrMoveFile event to fire. If the operation succeeds, the file gets a new name.
  4. <...Other events may fire...>
  5. The file is closed, causing the CleanupFile and CloseFile events to fire.

When this configuration setting is disabled, the component performs rename and move operations on open files by closing all open handles to the file, executing the rename/move operation, and then reopening the file using its new name. The file is reopened once for each handle that was closed before the rename/move operation. The sequence of events is as follows:

  1. The file is opened one or more times by the OS, causing the CreateFile and/or OpenFile events to fire.
  2. <...Other events may fire...>
  3. A request to rename or move the file arrives. The component performs (emulates) closing all of the currently open file handles, causing the CleanupFile and CloseFile events to fire (once each for each open handle). All handle closing occurs within a single worker thread without context switches (so the overall operation is fairly fast, but not multithreaded).
  4. The RenameOrMoveFile event fires for the "completely closed" file.
  5. Finally, the file is reopened by the component using its new name, causing the OpenFile event to fire once for each of the handles that was closed previously. Again, all opens are performed sequentially on a single worker thread, without context switches.
  6. <...Other events may fire...>
  7. The file is closed, causing the CleanupFile and CloseFile events to fire.

By default, this configuration setting is disabled, which is the slower but more conservative option; an application whose backend storage supports renames/moves for open resources can try to enable this configuration setting to improve performance.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

FileCachePolicyPurgeOnClose:   Whether file data should be purged from the cache when the file is closed.

This configuration setting specifies whether the component should purge a file's data from the file data cache as soon as the file is closed. By default, this configuration setting is disabled, and the component keeps the data from closed files cached for future use.

Please refer to the Caching topic for more information.

Note: This setting cannot be changed within events.

FileCachePolicyWriteThrough:   Whether file data should be written to storage as it is written to the cache.

This configuration setting specifies whether the component should write file data out to storage (via WriteFile) as it is written to the cache. By default, this configuration setting is disabled, and data are written to the cache first and flushed out to storage later (assuming file caching is enabled).

Please refer to the Caching topic for more information.

Note: This setting cannot be changed within events.

FireFileInfoOutOfBand:   Whether the driver may fire multiple GetFileInfo requests simultaneously to other requests.

GetFileInfo is fired frequently in multiple scenarios. However, if an event handler blocks execution for any reason, other filesystem operations may suffer from waiting for GetFileInfo to finish.

If there is a possibility that an event handler will block execution for extended time (more than 3-4 seconds), it is reasonable to enable this setting. Note: the setting makes GetFileInfo operations slightly slower due to the required allocation and deallocation of internal objects; so, an application should use the setting only when the file data is not available quickly and delays affect the overall performance (e.g., when file information is requested from a remote storage without local caching).

The setting is disabled by default for better performance.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

FireSetFileSizeOnWrite:   Whether to fire SetFileSize before WriteFile if writing would expand the file.

This configuration setting specifies whether the SetFileSize event should be fired before firing the WriteFile event if the write operation in question would cause the file's size to increase.

When this configuration setting is enabled (default), and the SetFileSize operation is successful, then either the data are written to the file data cache or the WriteFile event is subsequently fired. It is also possible for the application to deny the request to expand the file (e.g., because of insufficient storage space).

When this configuration setting is disabled, SetFileSize will not be fired when a write request would require the file to expand, which results in fewer events being fired and thus increased performance. In this case, if the data are written to the file data cache first and WriteFile is fired later (when the cache gets flushed), then any file expansion errors that occur at that time will not be reported to the originator of the write request. Instead, the OS will report them via a notification on the active desktop.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

FlushFileBeforeUnlock:   Whether file buffers are flushed before completion of UnlockFile operation.

Normally, the cached data of the file are managed by the cache manager automatically. If the application implements a network filesystem and handles file lock operations by locking the file beyond the local enironment, it is desired that the data written under the lock are flushed during unlock to let the application send them to remote locations. Enable this configuration setting for such flushing to occur automatically.

By default, this configuration setting is disabled.

Note: This setting cannot be changed when Active is true, and it cannot be changed within events.

ForceFileClose:   Whether the driver should force files to close after the last handle to them is closed.

A file is not closed after the last handle to it is closed (i.e., after the last CleanupFile event fires); it is closed only after the last CloseFile event fires. If a file is cached or memory-mapped, the system may hold it open for quite a while (minutes, or even hours) after the last handle to it is closed.

When this configuration setting is enabled (default), then after the last handle to a file is closed, the driver will wait some time (as defined by the ForceFileCloseDelay setting), and then it will attempt to flush and purge any in-memory file data, allowing it to be formally closed.

Disabling this configuration setting slightly improves performance in the case of repeated access to files on the virtual drive; however, CloseFile events can be significantly delayed.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

ForceFileCloseDelay:   Specifies the timeout between the closing of a last handle of a file and the moment the driver tries to close the file.

This configuration setting is a companion to the ForceFileClose setting. The timeout is set in milliseconds: the default value is 3,000 ms, and the minimal allowed value is 500 ms.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

ImplicitAttributeUpdates:   Whether SetFileAttributes fires when a file is modified.

By default, this setting is enabled, and the SetFileAttributes event fires when file modification occurs (usually, when a file handle is closed) to update modification time and attributes. If the setting is disabled, SetFileAttributes will fire only when times or attributes are changed by some process explicitly (using the IRP_MJ_SET_INFORMATION system call).

LockRetryInterval:   Time between repeated lock attempts.

When LockFile event handler returns ERROR_RETRY, the request will be repeated after the time specified in this setting. The vlaue is in milliseconds, minimum is 100 and the default is 500.

Note: This setting cannot be changed when Active is true, and it cannot be changed within events.

LoggingEnabled:   Whether extended logging is enabled.

This setting specifies whether extended logging is enabled for this component; it is disabled by default. Please refer to the Error Reporting and Handling topic for more information.

This setting's value is stored in the registry and is persistent; it requires administrative rights to be changed.

MaxReadBlockSize:   The maximum buffer size allowed for the ReadFile event.

This configuration setting specifies the maximum size, in bytes, of the buffer passed to the ReadFile event. The default value of 0 means "no limit", in which case the component will always pass a buffer large enough to hold all of the requested data in a single WriteFile event.

Note: Unlimited buffer sizes may not be suitable for use-cases in which the virtual filesystem is backed by network operations or other "slow" storage, because attempting to handle large (more than 100 MB) blocks may take longer than the configured event timeout duration.

Applications with constraints such as those described earlier can use this configuration setting to limit how much data they have to process in a single ReadFile event. If a read request arrives requesting more data than the limit allows, the component will "split up" the overall buffer into smaller chunks and fire the ReadFile event individually for each one (and reset the timeout timer between each event).

Note: This setting cannot be changed within events.

MaxWorkerThreadCount:   The maximum number of worker threads to use to fire events.

(CBFS and FUSE components on Windows only) This setting specifies the maximum number of worker threads the component may create to fire events on when the SerializeEvents property is set to seOnMultipleThreads. (If other cases, this setting does not apply.)

By default, this setting is set to 0, and the driver automatically chooses an optimal number of threads using this equation: 4 * number_of_processors.

MaxWriteBlockSize:   The maximum buffer size allowed for the WriteFile event.

This configuration setting specifies the maximum size, in bytes, of the buffer passed to the WriteFile event. The default value of 0 means "no limit", in which case the component will always pass a buffer containing all of the data to write in a single WriteFile event.

Note: Unlimited buffer sizes may not be suitable for use-cases in which the virtual filesystem is backed by network operations or other "slow" storage, because attempting to handle large (more than 100 MB) blocks may take longer than the configured event timeout duration.

Applications with constraints such as those described earlier can use this configuration setting to limit how much data they have to process in a single WriteFile event. If a write request arrives carrying more data than the limit allows, the component will "split up" the overall buffer into smaller chunks and fire the WriteFile event individually for each one (and reset the timeout timer between each event).

Note: This setting cannot be changed within events.

MinWorkerThreadCount:   The minimum number of worker threads to use to fire events.

(CBFS and FUSE components on Windows only) This setting specifies the minimum number of worker threads the component should create to fire events on when the SerializeEvents property is set to seOnMultipleThreads. (In other cases, this setting does not apply.)

By default, this setting is set to 0, and the driver automatically chooses an optimal number of threads using this equation: max(number_of_processors, 4). If this setting's value exceeds the MaxWorkerThreadCount value, the latter is used instead.

NrDeviceQueryInfoHandling:   Whether the network redirector module should respond to file-specific requests sent to non-file entries.

Some filter drivers send file-specific requests to our network device object. This behavior can lead to a "Device does not recognize the command" error when attempting to create or mount a filesystem. By default, this configuration setting is disabled to prevent unexpected conflicts with other software.

This configuration setting changes the default behavior of our network redirector module to handle such requests.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

OmitEventFilenames:   Whether the filename parameter should be empty in events.

In some editions of CBFS Connect, passing an extra string parameter to events involves extra allocation of memory and is the unnecessary expenditure of computer resources. Enabling this configuration setting makes the component skip passing the filename to all events except CreateFile, OpenFile, and GetFileInfo . Event handlers can obtain the file or directory name by calling the GetEventFilename method.

By default, this configuration setting is disabled.

Note: This setting cannot be changed when Active is true, and it cannot be changed within events.

SectorSize:   The sector size to create the virtual drive with.

This setting specifies the number of bytes each "sector" on the virtual drive contains. This setting must be set to a value that is a multiple of 512, a power of 2, and not larger than 4096 (e.g., 512, 1024, 2048, 4096).

By default, this setting is set to 512; using a different value is not recommended.

SupportPosixStyleDeletion:   Whether the driver should close all open handles to a file being deleted.

This configuration setting specifies that the driver should handle the FILE_DISPOSITION_POSIX_SEMANTICS flag, when it is set on a file object.

When this configuration setting is enabled, the driver forcefully closes all open handles to a file that is being deleted, if these handles include SHARE_DELETE flag. By default, this configuration setting is disabled to prevent unexpected behavior in applications that own handles.

Note: This setting cannot be changed within events.

SupportSearchIndexer:   Specifies whether the driver must take additional measures to support indexing by Windows Search.

The Search Indexer of Windows 10 has been recently modified in the way that Search Indexer stopped indexing virtual disks. This happens because of the missing mounting point when the disk is created.

This setting, when enabled, tells the driver to create a fake mounting point and use it to work around the Search Indexer bug. By default, this setting is disabled.

Note: This property cannot be changed within events.

SupportUnlockAllRequests:   Whether the driver should fire the UnlockFile event for IRP_MN_UNLOCK_ALL requests or process them internally.

When this configuration setting is disabled, the driver handles an IRP_MN_UNLOCK_ALL request internally and fires the UnlockFile event for each locked range, passing its offset and length to the event handler.

When this configuration setting is enabled (default), the driver fires UnlockFile once with the offset and length of the locked region being set to -1.

Note: This setting cannot be changed within events.

SynchronousCleanupFile:   Whether the driver should perform cleanup operations synchronously.

This configuration setting specifies that the driver should wait until CleanupFile event returns before completing the IRP_MJ_CLEANUP request.

When this configuration setting is enabled, the driver does not complete the IRP_MJ_CLEANUP request until the user-mode processing of the CleanupFile event returns or a timeout occurs. By default, this configuration setting is disabled to prevent deadlocks because of some error in the user-mode processing.

Note: This setting cannot be changed within events.

TranslateDOSCharsInEnumMasks:   Whether the DOS wildcard characters should be translated during search.

In addition to * and ?, Windows uses special wildcard characters for compatibility with DOS applications and short (8.3) names. These characters are <, >, and " . Their meanings are described in MSDN and .NET reference source code as follows:

  • DOS_STAR (<) - Matches zero or more characters until encountering and matching the final dot (.) in the name. (Source code comment: "DOS_STAR matches any character except . zero or more times.")
  • DOS_QM (>) - Matches any single character or, upon encountering a period or end of name string, advances the expression to the end of the set of contiguous DOS_QMs. (Source code comment: "A DOS_DOT can match either a period, or zero characters beyond the end of name.")
  • DOS_DOT (") - Matches either a period or zero characters beyond the name string. (Source code comment: "DOS_QM is the most complicated. If the name is finished, we can match zero characters. If this name is a '.', we don't match, but look at the next expression. Otherwise, we match a single character.")

When this setting is enabled (default), the component translates them to * and ?, but such a translation is not able to fully represent all the logic behind DOS_* wildcard characters; however, this translation is usually sufficient for end-user needs.

If your application needs to perform exact matching, disable this setting and implement handling of DOS_* wildcard characters in your application. Further explanation about the characters can be found in the MSDN article. The RtlIsNameInExpression function of Windows API may be used to perform such a matching. Note: as the explanation states, "When you do a case-insensitive search and don't provide a translation table, the name is converted to uppercase."

In FUSE on Linux, this setting is not used.

UnusedMetadataLifetime:   The time after which unused metadata cache entries are removed from the metadata cache.

This configuration setting specifies the maximum time, in milliseconds, during which items are kept in the metadata cache before they are removed. The value should be a positive number. The default value is set to 10 minutes.

Note: This setting cannot be changed within events.

UpdateFileMetadataOnOpen:   Whether the component should request file info and update internal records during file open.

When enabled, this configuration setting tells the component to fire the GetFileInfo event right after OpenFile and pass the obtained information to the driver, which will use the updated information for the newly opened file. The driver in turn will pass this information to the OS. By default, this configuration setting is disabled to speed up file opening.

Note: This setting cannot be changed when Active is true, and it cannot be changed within events.

UpdateLastWriteTimeOnContentsChange:   Whether to fire SetFileAttributes when changes in file contents are made.

This configuration setting specifies whether the SetFileAttributes event should be fired upon handle close when there was a change in file contents or size.

This configuration setting is enabled by default. Disable it if the application has its own logic of managing the last write time attribute (e.g., based on the completion of a backend operation).

Note: This configuration setting has no effect on LastWriteTime change operations, initiated by the OS or other processes. The setting controls only the internal logic of adjusting the last write time.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

UpdateMetadataOfOpenFiles:   Whether times and attributes returned by GetFileInfo replace existing information if a file is opened.

This configuration setting specifies what the driver should do with file times and attributes when the GetFileInfo event is fired for a file while the file is opened. When the setting is disabled (default), these values are ignored unless the driver has a specific need for them. When the setting is enabled, an event handler may update the metadata, and even if the file is open, the information in the metadata cache will be refreshed.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

UseProtectiveFSFilter:   Whether the driver should use a filesystem filter to try and prevent deadlocks.

This configuration setting specifies whether the driver should try to prevent certain kinds of deadlocks by using a filesystem filter that tracks circular access to the virtual filesystem. This may be necessary for some third-party applications and drivers to function correctly.

If this configuration setting is enabled, the driver will attempt to activate the filesystem filter and use it to prevent deadlocks caused by cyclical access (if the activation fails, the driver will simply write an entry to the system log). If this configuration setting is disabled, the filter is not used at all.

By default, this configuration setting is disabled; enable it if system deadlocks are encountered.

Note: This setting cannot be changed when Active is true, and it cannot be changed within events.

UserModeFileCacheSize:   The size of the user mode file data cache.

When the FileCache property is set to fcInternalUserMode (3), this configuration setting specifies the size of the file data cache. This configuration setting cannot be used to change the size of the other file data cache implementations.

Because this configuration setting's value is specified in bytes and has a granularity of 64 KB, it must be a multiple of 65536. By default, this configuration setting is set to 0, and the driver uses a default size (currently, 300 MB; i.e., 314572800).

The user-mode file data cache's memory region is allocated on a per-process basis. Consequently, this configuration setting's value is synced between all CBFS component instances in the current process, and all associated virtual drives (that are configured to use the user-mode file data cache) share that memory region allocated for the current process.

Please refer to the Caching topic for more information.

Note: This setting cannot be changed within events. Additionally, this configuration setting can be changed only if, for all virtual drives in the current process, at least one of the following is True:

  • The drive is not currently mounted.
  • The FileCache property is not set to fcInternalUserMode (3).

UserModeLockFirst:   Defines the order of file range locking, whether a kernel-mode lock goes before or after the LockFile event is fired.

When this setting is disabled (default), when hanlding a Lock File request, the driver locks the requested range prior to firing an event. If the user-mode locking operation is likely to fail, an application may enable this setting to change the default order and have the event fired prior to locking the range in the kernel. When user-mode locking goes first, the range remains not locked by the driver until the user-mode event handler reports success.

Note: This setting cannot be changed when Active is true, and it cannot be changed within events.

USNJournalPolicy:   How USN Journal requests should be handled.

For virtual filesystems that identify as NTFS (via FileSystemName), this configuration setting specifies how USN Journal (Update Sequence Number Journal) requests should be handled. Possible values are as follows:

  • 0 - Emulate (default): Causes the driver to automatically handle USN Journal requests by emulating them internally to satisfy the OS.
  • 1 - Bypass: Causes USN Journal requests to be passed to the application via the Fsctl event for it to handle.
  • 2 - NotSupported: The driver does not announce USN Journal support to the system.

Note: The driver does not truly emulate all journaling functionality, it simply tells the OS that the journal is empty. Applications that want more robust functionality should set this configuration setting to 1 - Bypass and implement the desired logic themselves.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

VolumeGuidName:   The GUID of the mounted volume.

Use this setting to obtain the guild of the created disk device. The value is returned as a string in the "Volume{GUID}" format, where GUID is the actual GUID.

WorkerInitialStackSize:   The initial stack size to create worker threads with.

(CBFS and FUSE components on Windows only) This setting specifies the initial size of the stack each worker thread is created with. The system rounds this value to the nearest page.

By default, this setting is set to 0, and the driver uses a default stack size (currently, 1 MB).

Note: This setting cannot be changed when Active is true, and it cannot be changed within events.

ZeroOriginatorBufferBeforeMapping:   Whether the allocated buffer should be zeroed before it's passed to the event handler.

When an intermediary buffer is allocated for use with the ReadFile and EnumerateDirectory events, it will contain whatever data was previously stored in that memory region, including old data leftover from other processes. This potentially can lead to sensitive information being leaked to the process that initiated the filesystem request (e.g., if the event handler does not completely fill the buffer during its execution).

To guard against the possibility of data leakage, this configuration setting can be enabled to instruct the driver to zero intermediary buffers before they are passed to event handlers. Because the zeroing of such buffers takes requires additional processing time, this configuration setting is disabled by default.

Note: This setting cannot be changed after a virtual drive is created, and it cannot be changed within events.

Base Config Settings

BuildInfo:   Information about the product's build.

When queried, this setting will return a string containing information about the product's build.

LicenseInfo:   Information about the current license.

When queried, this setting will return a string containing information about the license this instance of a component is using. It will return the following information:

  • Product: The product the license is for.
  • Product Key: The key the license was generated from.
  • License Source: Where the license was found (e.g., RuntimeLicense, License File).
  • License Type: The type of license installed (e.g., Royalty Free, Single Server).

Trappable Errors (CBFS Component)

The component uses Windows error codes during operation as necessary. Please refer to the Error Reporting and Handling topic for more information.

Special Use Errors

21   ERROR_NOT_READY: Reported by the methods of the component if Initialize has not been called or did not succeed.
400   ERROR_THREAD_MODE_ALREADY_BACKGROUND: Reported by DispatchEvents when the component is not in a single-threaded mode.
575   ERROR_APP_INIT_FAILURE: Reported by the methods of the component if Initialize has not been called or did not succeed. Differs from ERROR_NOT_READY (21) in that it indicates a specific situation in the internal code.
588   ERROR_FS_DRIVER_REQUIRED: Reported if the required system module was not correctly installed for the given ProductGUID.
614   ERROR_NO_CALLBACK_ACTIVE: Reported by any method that can only be called within event handlers if it is called outside an event handler.
1006   ERROR_FILE_INVALID: Event handlers may return this error code to tell the driver that the file or directory, to which the operation is related, has been changed externally. Doing this will fail the operation with the corresponding error code and tell the driver to update the information it has about the file or directory. This special handling is not available for GetFileInformation and EnumerateDirectory events.
1292   ERROR_IMPLEMENTATION_LIMIT: Reported when the timeout value provided is less than 3 seconds.
1314   ERROR_PRIVILEGE_NOT_HELD: Reported by any method that requires elevated permissions if it is called without such permissions.