CBSync Component

Properties   Methods   Events   Config Settings   Errors  

The CBSync class enables seamless synchronization between local files and cloud storages or other remote repositories.

Syntax

cbfssync.CBSync

Remarks

CBSync provides an intuitive way to synchronize local files and folders with a remote storage. When remote changes are made, use the included methods to notify the local system. The following topics provide information about configuring and operating the component.

Selecting the Synchronization Root

Each instance of the component is capable of synchronizing a local directory with a remote storage. To begin, first set the SyncRootPath property to the location on a local disk where files will be visible. This location is also referred to as the "synchronization root". After calling the Install and Activate methods, the remote files will be visible at this location.

On Linux, the LinuxIntermediateFolder configuration setting specifies the location on disk where file data are stored. When Activate is called, the system FUSE library (version 2.9) is used to project a virtual file system in SyncRootPath. The file data actually reside within LinuxIntermediateFolder because all files within SyncRootPath are virtual.

On macOS, the MacDomainId and MacDomainLabel configuration settings must be set before calling the Install and Activate methods. These settings identify the synchronization root on macOS and make it visible to a user.

Installation and Uninstallation

Before the component can be activated, it must be registered with the system by calling the Install method.

During normal operation, files are accessed in the synchronization root (and a temporary directory on Linux). To clean up local placeholder files and unregister from the system, use the Uninstall method. After uninstalling, the remote files will no longer be visible at the location specified by SyncRootPath. Uninstalling is typically performed only when an application will be removed from the system.

Starting and Stopping Synchronization

Call the Activate method to start operations. After this method returns, events will fire as requests for remote files are made. One of the first events to fire is the ListDirectory event, which is used to populate the synchronization root with files and folders. The Activate method needs to be called only once, and events will continue to fire as needed.

Note: Files and subfolders that already exist locally but are not reported by a ListDirectory event handler are considered newly created items, and either UpdateFile or UpdateFolder will fire for each.

To stop synchronization but keep the synchronization root registered, call the Deactivate method, which will allow users to continue to work with offline files.

Handling Events

While the component is active, handle the component's events to provide information as well as receive notifications about local updates.

Note: Events are fired on arbitrary threads and not the main thread, in which the component was created. Multiple events can fire simultaneously, in different threads, and it is the responsibility of the user to implement any necessary synchronization.

The following events may fire while the component is active:

Event Usage
ListDirectory Fired during directory enumeration. Used to list the contents of a remote directory.
GetFileData Fired during remote file retrieval. Used to request data from the remote storage.
CreateFile Fired when a local file is created. Used to acknowledge and replicate the created file in the remote storage.
CreateFolder Fired when a local folder is created. Used to acknowledge and replicate the created folder in the remote storage.
DeleteFile Fired when a local file is deleted. Used to acknowledge and replicate the deleted file in the remote storage.
DeleteFolder Fired when a local folder is deleted. Used to acknowledge and replicate the deleted folder in the remote storage.
RenameFile Fired when a local file is renamed or moved. Used to acknowledge and replicate the renamed or moved file in the remote storage.
RenameFolder Fired when a local folder is renamed or moved. Used to acknowledge and replicate the renamed or moved folder in the remote storage.
UpdateFile Fired when a local file is updated. Used to acknowledge and replicate the updated file in the remote storage.
UpdateFolder Fired when a local folder is updated. Used to acknowledge and replicate the updated folder in the remote storage.

When these events fire and communication with the remote storage is required, an application may use either of the two strategies for reporting the completion of the operation:

  • The request may be completed within the event. This prevents the event from returning and is suitable for operations that can be completed quickly.
  • Alternatively, the ResultCode parameter can be set to CBFSSYNC_PENDING (0x21000001) to allow the event to return without delay, and the work can be completed separately. When the operation with the remote storage is performed in this manner, the FinalizeTask method must be called to inform the component that the operation has been completed.

Some of the events include one or more parameters intended for use as binary data buffers, which either contain or expect data to be provided to complete the operation. Buffer parameters point to preallocated blocks of memory, in which the size is specified by the parameter immediately following; as such, be sure to write data directly to the pointed-to memory rather than change the value of the buffer parameter itself.

Finally, use caution when accessing files from within events. Performing an action on a file that is within the synchronization root may cause the event to fire again before the first event has returned. This can lead to an infinite recursion scenario, which may cause a deadlock or undefined behavior.

Synchronizing Local Changes

If changes to a local file or folder in the synchronization root are made, the UpdateFile or UpdateFolder events will fire on a per-item basis and provide an opportunity to synchronize changes to the remote storage.

Information about the modified file or folder is provided through the UpdateFile and UpdateFolder events. These events provide information about the following file or folder properties:

  • The Path of the file or folder within the synchronization root.
  • The Size of the file (not applicable to folders).
  • The CreationTime, LastAccessTime, and LastModifiedTime of the file or folder, specified in UTC.
  • Attributes, including Read-Only, Archived, Hidden, and Pinned statuses.
Please refer to the UpdateFile and UpdateFolder events for more details.

Synchronizing Remote Changes

If changes in the remote storage are made, use the CreateFile, CreateFolder, UpdateFile, or UpdateFolder methods to reflect the corresponding changes in the local filesystem.

These operations require that the following information about the item be provided to the component:

  • The Path of the item within the synchronization root.
  • The Size of the item (not applicable to folders).
  • The CreationTime, LastAccessTime, and LastModifiedTime of the item, specified in UTC.

Optionally, additional attributes may be provided, if desired.

If the remote item was deleted, use the DeleteFile or DeleteFolder methods to reflect the item deletion in the local filesystem.

File Status Icons

On Windows, the status of files is represented by icons visible in Windows File Explorer. These icons are defined by the operating system and are the same icons used by OneDrive.

IconDescription
The blue cloud icon indicates that the file or folder is available only online. Online-only files do not take up space on the local system but are not accessible without an internet connection.
The green check icon indicates that the file or folder has been downloaded to the local system and is available anytime, even without internet access. Users may invoke the "Free up space" command in Windows File Explorer to change the file back to an online-only file.
The solid green circle icon indicates the file or folder has been pinned and will always be available on the local system. Pinning a file or folder ensures that it is not automatically changed back to an online-only file by the operating system at any time.
Files that are currently being synchronized are represented by this icon. When the operation completes, the icon will be updated to one of the listed icons.

Handling Errors

The component communicates errors using the error codes defined in the Error Codes section.

The ResultCode parameter of events can be used to report an error when the operation could not be completed successfully. The ResultCode parameter is set to 0 by default, which indicates the operation was successful.

If the event handler panics, the component will recover from an error and an internal error will be reported.

Property List


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

ActiveThis property reflects whether the class is active.
SyncRootIconThis property specifies a path to an icon for the folder.
SyncRootLabelThis property specifies a label for the folder.
SyncRootPathThis property specifies the root directory for synchronized files and folders.

Method List


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

ActivateThis method prepares and starts the necessary mechanisms for synchronization.
ConfigThis method sets or retrieves a configuration setting.
CreateFileThis method creates a local file within the synchronization root.
CreateFolderThis method creates a local folder within the synchronization root.
DeactivateThis method stops the synchronization operation.
DeleteFileThis method deletes a local file from the synchronization root.
DeleteFolderThis method deletes a local folder from the synchronization root.
FinalizeTaskThis method notifies the class that the asynchronous data transfer operation has been completed.
GetFileAttributesThis method returns the attributes of a local file.
GetFileDataThis method reads data from the local file associated with a creation or update of a local file.
GetFileStatusThis method returns the download status of a local file.
GetFolderAttributesThis method returns the attributes of a local folder.
GetFolderStatusThis method returns the download status of a local folder.
InstallThis method registers the synchronization root with the system.
ListFileThis method is used to provide information about a file item during directory enumeration.
ListFolderThis method is used to provide information about a directory item during directory enumeration.
PinFileThis method marks the file as pinned so it is always available on the system.
PinFolderThis method marks the folder as pinned so it is always available on the system.
PutFileDataThis method is used to provide the file data that were requested during item retrieval.
RenameFileThis method renames a local file in a synchronization root.
RenameFolderThis method renames a local folder in a synchronization root.
ResetFileThis method removes the local copy of the data for the specified file.
ResetFolderThis method removes the local copy of the data for the specified folder.
SetFileAttributesThis method sets the attributes of a local file.
SetFolderAttributesThis method sets the attributes of a local folder.
SyncFileThis method initiates synchronization of the specified file.
UninstallThis method unregisters the synchronization root from the system and performs cleanup operations.
UnpinFileThis method marks the file as unpinned so the local copy of the file data may be freed.
UnpinFolderThis method marks the folder as unpinned so the local copy of the files within the folder may be freed.
UpdateFileThis method is used to update a local file within the synchronization root.
UpdateFolderThis method is used to update a local folder within the synchronization root.

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.

CancelTaskThis event fires when an ongoing transfer of item data will not be completed and must be canceled.
CreateFileThis event fires when a local file is created.
CreateFolderThis event fires when a local folder is created.
DeleteFileThis event fires when a local file is deleted.
DeleteFolderThis event fires when a local folder is deleted.
ErrorThis event fires if an unhandled error occurs during an event.
GetFileDataThis event fires when file data are needed from the remote storage.
ListDirectoryThis event is fired when the contents of a remote directory need to be listed locally.
LogThis log reports events that occur in the class.
RenameFileThis event fires when a local file is about to be renamed or moved.
RenameFolderThis event fires when a local folder is about to be renamed or moved.
ResetFileThis event is fired after the local copy of a file's data has been discarded.
UpdateFileThis event fires when a local file is updated.
UpdateFolderThis event fires when a local folder is updated.

Config Settings


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

DownloadNewFilesWhether to automatically download content for new files.
ExcludedFilesA list of files to exclude.
ExcludeHiddenFilesWhether to process hidden files.
ExcludeTemporaryFilesWhether to process temporary files.
LinuxFUSEParamsA placeholder for additional parameters used for fine-tuning FUSE on Linux.
LinuxIntermediateFolderSpecifies the path to a local directory where intermediate file information will be stored.
LogLevelThe level of detail that is logged.
MacDomainIdSpecifies the Id of the synchronization domain.
MacDomainLabelSpecifies the label (display name) of the synchronization domain.
ResetPinnedFilesWhether to reset pinned files.
SerializeEventsWhether events should always fire one by one rather than concurrently.
TrackOfficeLockFilesWhether to track MS Office lock files.
WindowsLastErrorAn additional error code returned by the OS.
WindowsRecycleBinURLA URL displayed by the system in the delete confirmation dialog.
WindowsStorageProviderAccountUnique string identifier of the account within an application.
WindowsStorageProviderIdUnique string identifier of the application.
BuildInfoInformation about the product's build.
LicenseInfoInformation about the current license.

Active Property (CBSync Component)

This property reflects whether the class is active.

Syntax

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

Default Value

false

Remarks

This property reflects whether the component is currently active and handling OS requests. After Activate is called, this property returns true.

This property is read-only.

Data Type

bool

SyncRootIcon Property (CBSync Component)

This property specifies a path to an icon for the folder.

Syntax

func (obj *CBSync) SyncRootIcon() (string, error)
func (obj *CBSync) SetSyncRootIcon(value string) error

Default Value

""

Remarks

This property specifies a path to an icon that will be displayed in Windows File Explorer.

If set, Windows will use the specified icon for the virtual folder visible in Windows File Explorer. The value may contain either a resource path (e.g., SyncProvider.dll,-100) or a full path to an .ico file. For instance:

// Specify the same icon that .txt files use in Windows Explorer. cbsync.SyncRootIcon = @"%SystemRoot%\system32\imageres.dll,-102"; // Specify an .ico file. cbsync.SyncRootIcon = @"C:\somewhere\MyIcon.ico";

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

Note: This property is applicable only on Windows. This property has no effect on other platforms.

Data Type

string

SyncRootLabel Property (CBSync Component)

This property specifies a label for the folder.

Syntax

func (obj *CBSync) SyncRootLabel() (string, error)
func (obj *CBSync) SetSyncRootLabel(value string) error

Default Value

""

Remarks

This property specifies a label for the synchronization root. This property must be set before calling Activate.

On Windows, this value is used as the folder name visible in Windows File Explorer.

On Linux, this value is used as part of the LinuxIntermediateFolder.

On macOS, this property is not used; instead, an application must set the MacDomainId and MacDomainLabel configuration settings.

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

Data Type

string

SyncRootPath Property (CBSync Component)

This property specifies the root directory for synchronized files and folders.

Syntax

func (obj *CBSync) SyncRootPath() (string, error)
func (obj *CBSync) SetSyncRootPath(value string) error

Default Value

""

Remarks

This property is used to specify the location on the local disk where files and folders are synchronized. This property must be set before calling Install or Activate.

On Windows, this must be set to an existing directory.

On Linux, this must be set to an existing empty directory. After Activate is called, files will be visible at this location. Although this property specifies where files are visible, file data and metadata are stored at the location specified by the LinuxIntermediateFolder configuration setting.

On macOS, the operating system manages the location of the synchronization root (it is located under a user's home directory). An application should use the MacDomainId and MacDomainLabel configuration settings to make it possible for the OS to create and display a synchronization root.

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

Data Type

string

Activate Method (CBSync Component)

This method prepares and starts the necessary mechanisms for synchronization.

Syntax

func (obj *CBSync) Activate() error

Remarks

This method prepares and starts the necessary mechanisms for synchronization of the directory specified by the SyncRootPath property.

On macOS, set the MacDomainId configuration setting to uniquely identify this synchronization root instance before calling this method.

Before calling this method, invoke the Install method to perform system-specific registration procedures if the synchronization root has not previously been registered. When this method executes, the component discovers files or folders which exist locally in SyncRootPath and which were not synchronized before. Such files and directories are reported as newly created ones via the corresponding events. This is needed to provide an opportunity for the remote storage to properly reflect the synchronization root.

Note: This method will not return until these events have completed; thus, as a result, it may be desirable to complete them asynchronously by setting the ResultCode parameter of the events to CBFSSYNC_PENDING (0x21000001), allowing this method to return in a timely manner.

After this method returns, the synchronized location is exposed to the system and events will begin firing as operations are performed, including when the following occur:

  • The local system requests data from the remote storage, such as when listing the directory or opening a file.
  • Local changes have been made that should be synchronized to the remote storage, such as when a new file is created or an existing file is modified.
It is the application's duty to report remote changes through the CreateFile, CreateFolder, DeleteFile, DeleteFolder, UpdateFile, and UpdateFolder methods so that these changes can be be synchronized to the local file system.

Note: This method cannot be called within events.

Config Method (CBSync Component)

This method sets or retrieves a configuration setting.

Syntax

func (obj *CBSync) 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.

CreateFile Method (CBSync Component)

This method creates a local file within the synchronization root.

Syntax

func (obj *CBSync) CreateFile(Path string, Attributes int32, Size int64, CreationTime time.Time, LastAccessTime time.Time, LastModifiedTime time.Time) error

Remarks

This method creates a local file in the synchronization root and optionally initiates retrieval of its data from remote storage. To create a local file and initiate the retrieval of the data, set the CBFSSYNC_ATTR_PINNED attribute.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The Attributes parameter is used to specify the attributes of the file or folder. The specified attributes replace existing attributes of the file or folder. The special value 0 indicates no modification will be made to the existing attributes. To clear all attributes of a file or folder, set the CBFSSYNC_ATTR_NORMAL attribute. To obtain the current attributes, use the GetFileAttributes or GetFolderAttributes method. The value passed in this parameter should be a binary OR of the following values:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

The Size parameter must be set to the size of the file in bytes.

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time values specified in UTC. To indicate no change in the time when calling UpdateFile or UpdateFolder, use a DateTime value that is less than or equal to the Unix epoch of January 1, 1970.

// Create a new file placeholder. // "/folder1/folder2/new_file.txt" is the path to the file. // 0 represents the attributes because this is a file with no special attributes. // 0 is the size of the file in bytes. // FileCreationTime is a DateTime (in UTC). // FileLastAccessTime is a DateTime (in UTC). // FileLastWriteTime is a DateTime (in UTC). cbsync.CreateFile("/folder1/folder2/new_file.txt", 0, 0, FileCreationTime, FileLastAccessTime, FileLastWriteTime); // Create a new file and request the data to be downloaded. // "/folder1/folder2/new_file.txt" is the path to the file. // CBFSSYNC_ATTR_PINNED represents the attributes because this is a file that will be pinned. // 100 is the size of the file in bytes. // FileCreationTime is a DateTime (in UTC). // FileLastAccessTime is a DateTime (in UTC). // FileLastWriteTime is a DateTime (in UTC). cbsync.CreateFile("/folder1/folder2/get_data_file.txt", Constants.CBFSSYNC_ATTR_PINNED, 100, FileCreationTime, FileLastAccessTime, FileLastWriteTime);

CreateFolder Method (CBSync Component)

This method creates a local folder within the synchronization root.

Syntax

func (obj *CBSync) CreateFolder(Path string, Attributes int32, CreationTime time.Time, LastAccessTime time.Time, LastModifiedTime time.Time) error

Remarks

This method creates a local folder in the synchronization root. If the CBFSSYNC_ATTR_PINNED attribute is set, the component will initiate the retrieval of the items of the directory from the remote storage. If any files or folders are found, they are also pinned.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The Attributes parameter is used to specify the attributes of the file or folder. The specified attributes replace existing attributes of the file or folder. The special value 0 indicates no modification will be made to the existing attributes. To clear all attributes of a file or folder, set the CBFSSYNC_ATTR_NORMAL attribute. To obtain the current attributes, use the GetFileAttributes or GetFolderAttributes method. The value passed in this parameter should be a binary OR of the following values:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time values specified in UTC. To indicate no change in the time when calling UpdateFile or UpdateFolder, use a DateTime value that is less than or equal to the Unix epoch of January 1, 1970.

// Create a new folder in the synchronization root. // "/folder1/folder2/new_folder" is the path to the folder. // 0 represents the attributes because this is a folder with no special attributes. // FolderCreationTime is a DateTime (in UTC). // FolderLastAccessTime is a DateTime (in UTC). // FolderLastWriteTime is a DateTime (in UTC). cbsync.CreateFolder("/folder1/folder2/new_folder", 0, FolderCreationTime, FolderLastAccessTime, FolderLastWriteTime); // Create a new folder and request the contents are pinned. // "/folder1/folder2/" is the path to the folder. // CBFSSYNC_ATTR_PINNED represents the attributes because this is a folder that will be pinned. // FolderCreationTime is a DateTime (in UTC). // FolderLastAccessTime is a DateTime (in UTC). // FolderLastWriteTime is a DateTime (in UTC). cbsync.CreateFolder("/folder1/folder2/", Constants.CBFSSYNC_ATTR_PINNED, FolderCreationTime, FolderLastAccessTime, FolderLastWriteTime);

Deactivate Method (CBSync Component)

This method stops the synchronization operation.

Syntax

func (obj *CBSync) Deactivate() error

Remarks

This method stops the synchronization operation previously started by the Activate method. After calling this method, events will no longer fire as operations are performed on files within SyncRootPath.

Note: The synchronization root will still be registered and accessible after this method is called. Users will continue to be able to perform offline operations, including creating new files or modifying files that previously have been synchronized.

To unregister and remove access to the synchronization root, call the Uninstall method instead.

Linux:

To handle requests of the sytem FUSE library, the component uses a dedicated thread. If there exist open handles to items in a synchronization root directory, FUSE doesn't finish its operations, while the component waits for FUSE to finish. The component can forcefully stop FUSE operations, but only if the application that uses the component didn't set a handler for the SIGINT signal. If such a handler is set, the component cannot forcefully stop the operations and has to wait for the handles to be closed and for FUSE to stop.

If a process that uses the component is killed or crashes, there's a hanging FUSE mounting point left visible in the system. To remove it, call one of these commands:

  • if a process was run under the same user account that performs the removal operation, call "fusermount -u <mounting_point>", where "mounting_point" is a synchronization root directory as set in the SyncRootPath property.
  • if a process was run under a different user account, call "sudo umount <mounting_point>" instead. Note that this operation requires that a user either is root or is included in the "sodoers" group.

Note: This method cannot be called within events.

DeleteFile Method (CBSync Component)

This method deletes a local file from the synchronization root.

Syntax

func (obj *CBSync) DeleteFile(Path string) error

Remarks

This method deletes a local file from the synchronization root, but it does not delete the file from the remote storage.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

// Delete a specific file from the synchronization root. cbsync.DeleteFile("/folder1/folder2/file.txt");

DeleteFolder Method (CBSync Component)

This method deletes a local folder from the synchronization root.

Syntax

func (obj *CBSync) DeleteFolder(Path string, DeleteChildren bool) error

Remarks

This method deletes a local folder from the synchronization root, but it does not delete the folder from the remote storage.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

When a folder is deleted, a caller may use DeleteChildren to specify that if the folder contains files or subfolders, those should also be removed. If this parameter is not set and the folder contains children, the call will fail.

// Delete the specified folder and all its contents. // DeleteChildren parameter set to true indicates all contained files and subfolders will be deleted. cbsync.DeleteFolder("/folder1/folder2/target_folder", true);

FinalizeTask Method (CBSync Component)

This method notifies the class that the asynchronous data transfer operation has been completed.

Syntax

func (obj *CBSync) FinalizeTask(TaskId int64, ErrorCode int32) error

Remarks

This method must be called to inform the component that the asynchronous transfer of data, initiated in response to any of the following events, has been completed (either successfully or with an error):

When any of these events fire and data transfer is required, this transfer can take place asynchronously, without blocking the event. For this, the event handler should set the ResultCode parameter of the event to CBFSSYNC_PENDING (0x21000001), schedule the asynchronous operation, and let the event return. Once the synchronization operations are complete, this FinalizeTask method must be called to indicate that the operation is complete.

The application should set the TaskId parameter to the value it received in the handler of the event whose operations are completed asynchronously; thus, it is important that the application stores this value before returning from the event handler.

If the operation completed successfully, the ErrorCode parameter should be set to 0; otherwise, it should be set to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values.

Note: This method cannot be called within events.

GetFileAttributes Method (CBSync Component)

This method returns the attributes of a local file.

Syntax

func (obj *CBSync) GetFileAttributes(Path string) (int32, error)

Remarks

This method returns the attributes of a local file within the synchronization root. It may be used at any time, including from within events, to obtain the attributes of a local file.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The return value is a binary OR of the following values:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

GetFileData Method (CBSync Component)

This method reads data from the local file associated with a creation or update of a local file.

Syntax

func (obj *CBSync) GetFileData(TaskId int64, Position int64, Buffer []byte, Index int32, Count int32) (int32, error)

Remarks

This method may be used from within the CreateFile and UpdateFile events to obtain the data of the local file that was created or changed and that should be sent to the remote storage.

The TaskId parameter must be set to the same TaskId value provided by the corresponding CreateFile or UpdateFile event.

Count bytes of data will be read from the file, starting from the specified Position, into the given Buffer. The data are written to Buffer starting at the given Index.

The method returns the number of bytes read.

GetFileStatus Method (CBSync Component)

This method returns the download status of a local file.

Syntax

func (obj *CBSync) GetFileStatus(Path string) (int32, error)

Remarks

This method returns the download status of a local file within the synchronization root. A downloaded file is one that is available on the local system but may be automatically changed to an online-only file by the operating system.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The return value is a binary OR of the following values:

CBFSSYNC_STATUS_DOWNLOADED0x00000001Indicates that the item is downloaded.

GetFolderAttributes Method (CBSync Component)

This method returns the attributes of a local folder.

Syntax

func (obj *CBSync) GetFolderAttributes(Path string) (int32, error)

Remarks

This method returns the attributes of a local folder within the synchronization root. It may be used at any time, including from within events, to obtain the attributes of a local folder.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The return value is a binary OR of the following values:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

GetFolderStatus Method (CBSync Component)

This method returns the download status of a local folder.

Syntax

func (obj *CBSync) GetFolderStatus(Path string) (int32, error)

Remarks

This method returns the download status of a local folder within the synchronization root. A downloaded folder is one for which all the files within it are available on the local system, but it may be automatically changed to an online-only folder by the operating system.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The return value is a binary OR of the following values:

CBFSSYNC_STATUS_DOWNLOADED0x00000001Indicates that the item is downloaded.

Install Method (CBSync Component)

This method registers the synchronization root with the system.

Syntax

func (obj *CBSync) Install() error

Remarks

This method registers the synchronization root specified by SyncRootPath with the system. After calling this method, invoke the Activate method to begin synchronization operations.

On Windows, set the WindowsStorageProviderAccount and WindowsStorageProviderId configuration settings to uniquely identify this synchronization root instance before calling this method, which is important when working with multiple synchronized locations on one system.

On macOS, set the MacDomainId and MacDomainLabel configuration settings to uniquely identify this synchronization root instance before calling this method.

This method must be called once for each synchronization root, but it does not need to be called again for an altready registered root unless the Uninstall method is invoked to remove the registration.

Note: The registration performed by this method is persistent and will remain even if the application exits or the component is deactivated as a result of calling the Deactivate method.

On Linux, this method checks that FUSE is installed.

Note: This method cannot be called within events.

On Windows, this method requires administrative rights to execute successfully. If the user account of the process that calls this method does not have such rights, the call will fail with an error, and the E_ACCESSDENIED HRESULT code will be reported in the WindowsLastError configuration setting.

ListFile Method (CBSync Component)

This method is used to provide information about a file item during directory enumeration.

Syntax

func (obj *CBSync) ListFile(TaskId int64, FileName string, Attributes int32, Size int64, CreationTime time.Time, LastAccessTime time.Time, LastModifiedTime time.Time) error

Remarks

This method may be called to provide detailed information about a file item contained in the directory; call it either from within the ListDirectory event or after ListDirectory returns to supply the information asynchronously.

The TaskId parameter must be set to the same value provided in the ListDirectory event.

The FileName parameter should contain the name of the file without a path or path separator.

The Attributes parameter is used to specify the attributes of the file. Available attributes are as follows:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

The Size parameter must be set to the size of the file in bytes. This parameter is not applicable to folders.

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time values specified in UTC.

Note: This method can be called only within events, and, unless the event has been completed with the CBFSSYNC_PENDING result earlier, the method must be called in the same thread that the event was fired on.

// Return information about a file. // 123456789 is the e.TaskId value from the ListDirectory event. // "myfile.txt" is the name of the file (without separators). // 0 represents the attributes since this is a file with no special attributes. // 100 is the size of the file in bytes. // FileCreationTime is a DateTime (in UTC). // FileLastAccessTime is a DateTime (in UTC). // FileLastWriteTime is a DateTime (in UTC). cbsync.ListFile(123456789, "myfile.txt", false, 0, 100, FileCreationTime, FileLastAccessTime, FileLastWriteTime); // Return information about a read-only hidden file. // Constants.CBFSSYNC_ATTR_READONLY | Constants.CBFSSYNC_ATTR_HIDDEN represents the attributes since this is a read-only hidden file. cbsync.ListFile(123456789, "myfile.txt", Constants.CBFSSYNC_ATTR_READONLY | Constants.CBFSSYNC_ATTR_HIDDEN, 100, FileCreationTime, FileLastAccessTime, FileLastWriteTime);

ListFolder Method (CBSync Component)

This method is used to provide information about a directory item during directory enumeration.

Syntax

func (obj *CBSync) ListFolder(TaskId int64, FolderName string, Attributes int32, CreationTime time.Time, LastAccessTime time.Time, LastModifiedTime time.Time) error

Remarks

This method may be called to provide detailed information about a directory item contained in the directory; call it either from within the ListDirectory event or after ListDirectory returns to supply the information asynchronously.

The TaskId parameter must be set to the same value provided in the ListDirectory event.

The FolderName parameter should contain the name of the folder without separators.

The Attributes parameter is used to specify the attributes of the folder. Available attributes are as follows:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time values specified in UTC.

Note: This method can be called only within events, and, unless the event has been completed with the CBFSSYNC_PENDING result earlier, the method must be called in the same thread that the event was fired on.

// Return information about a folder. // 123456789 is the e.TaskId value from the ListDirectory event. // "myfolder" is the name of the folder (without separators). // 0 represents the attributes since this is a directory with no special attributes. // FileCreationTime is a DateTime (in UTC). // FileLastAccessTime is a DateTime (in UTC). // FileLastWriteTime is a DateTime (in UTC). // Return information about a folder. cbsync.ListFolder(123456789, "myfolder", 0, FileCreationTime, FileLastAccessTime, FileLastWriteTime);

PinFile Method (CBSync Component)

This method marks the file as pinned so it is always available on the system.

Syntax

func (obj *CBSync) PinFile(Path string) error

Remarks

This method pins the file specified by Path. When the file is pinned, a download is initiated if the file data have not previously been downloaded. Once the file data have been downloaded, the file is marked as pinned, meaning the file is always available on the system even when no Internet connection is available.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

Calling this method is equivalent to calling SetFileAttributes and passing only the CBFSSYNC_ATTR_PINNED attribute. To unpin a file so that the local file data may be freed, call UnpinFile.

macOS: This method is not supported.

PinFolder Method (CBSync Component)

This method marks the folder as pinned so it is always available on the system.

Syntax

func (obj *CBSync) PinFolder(Path string) error

Remarks

This method pins the folder specified by Path. When the folder is pinned, a download is initiated if files within the folder have not been downloaded. Once the files within the folder have been downloaded, the folder is marked as pinned, meaning the files within the folder are always available on the system even when no Internet connection is available.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

Calling this method is equivalent to calling SetFolderAttributes and passing only the CBFSSYNC_ATTR_PINNED attribute. To unpin a folder so that the local files may be freed, call UnpinFolder.

macOS: This method is not supported.

PutFileData Method (CBSync Component)

This method is used to provide the file data that were requested during item retrieval.

Syntax

func (obj *CBSync) PutFileData(TaskId int64, Buffer []byte, Index int32, Count int32) error

Remarks

This method may be called from within the GetFileData event to immediately provide the requested file data or after GetFileData returns to supply them asynchronously.

The TaskId parameter must be set to the same value provided in the GetFileData event.

When the OS must retrieve file data, the GetFileData event is fired, which specifies the range of remote file data that must be read and passed back by this method. If the data are to be provided asynchronously, the event's ResultCode parameter should be set to CBFSSYNC_PENDING (0x21000001) before returning from the event handler; otherwise, this method should be called from within the handler.

Requested file data can be supplied through the Buffer, where Count bytes of data will be read by the component starting at the given Index. The data requested by the event may be supplied either all at once or in chunks over multiple calls to this method.

Once all file data have been provided and the transfer is complete, inform the component by calling the FinalizeTask method.

For example, if GetFileData fires and requests 1024 bytes of file data, the user can opt to pass these data in one or multiple chunks:

// Pass all 1024 bytes of data at once. cbsync.PutFileData(e.TaskId, buffer, 0, 1024); cbsync.FinalizeTask(e.TaskId, 0); // Pass data in three separate chunks totaling 1024 bytes. cbsync.PutFileData(e.TaskId, buffer, 0, 512); cbsync.PutFileData(e.TaskId, buffer, 512, 100); cbsync.PutFileData(e.TaskId, buffer, 612, 412); cbsync.FinalizeTask(e.TaskId, 0);

RenameFile Method (CBSync Component)

This method renames a local file in a synchronization root.

Syntax

func (obj *CBSync) RenameFile(Path string, NewPath string, Overwrite bool) error

Remarks

This method renames or moves a local file in a synchronization root.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The NewPath parameter should be a new path that begins with the directory separator and includes a file name; it identifies the new name and location of the file within the synchronization root.

Overwrite, when set to true, tells the component to overwrite another file that is located at NewPath at the moment of a call to this method. If a file exists and Overwrite is false, the method fails with an error.

Note: If a directory exists at NewPath, the method will fail regardless of the value of the Overwrite parameter.

RenameFolder Method (CBSync Component)

This method renames a local folder in a synchronization root.

Syntax

func (obj *CBSync) RenameFolder(Path string, NewPath string) error

Remarks

This method renames or moves a local folder in a synchronization root.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The NewPath parameter should be a new path that begins with the directory separator and includes a folder name; it identifies the new name and location of the folder within the synchronization root.

The method will fail if a file or folder already exists at NewPath.

ResetFile Method (CBSync Component)

This method removes the local copy of the data for the specified file.

Syntax

func (obj *CBSync) ResetFile(Path string) error

Remarks

This method removes the local copy of data for the specified file identified by Path, leaving behind an empty placeholder locally. The ResetPinnedFiles setting controls whether pinned files are reset or skipped (default).

When files are downloaded, their data are stored both locally and remotely. This method should be used to remove the local copy of data and keep only the empty placeholder files.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

// Reset a specific file. cbsync.ResetFile("/MyFolder/MyFile.txt");

ResetFolder Method (CBSync Component)

This method removes the local copy of the data for the specified folder.

Syntax

func (obj *CBSync) ResetFolder(Path string) error

Remarks

This method removes the local copy of the data for the specified folder identified by Path, leaving behind an empty placeholder locally. The component will recursively reset all files within that folder. The ResetPinnedFiles setting controls whether pinned files are reset or skipped (default).

When files are downloaded, their data are stored both locally and remotely. This method should be used to remove the local copy of data and keep only the empty placeholder files.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

// Reset all files within "MyFolder" and its subfolders. cbsync.ResetFolder("/MyFolder");

SetFileAttributes Method (CBSync Component)

This method sets the attributes of a local file.

Syntax

func (obj *CBSync) SetFileAttributes(Path string, Attributes int32) error

Remarks

This method sets the attributes of a local file within the synchronization root. It may be used at any time, including from within events, to modify the attributes of a local file.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The Attributes parameter is used to specify the attributes of the file or folder. The specified attributes replace existing attributes of the file or folder. The special value 0 indicates no modification will be made to the existing attributes. To clear all attributes of a file or folder, set the CBFSSYNC_ATTR_NORMAL attribute. To obtain the current attributes, use the GetFileAttributes or GetFolderAttributes method. The value passed in this parameter should be a binary OR of the following values:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

// Set a specific file's attributes to be read-only and hidden. // "myfile.txt" is the name of the file (without separators). cbsync.SetFileAttributes("/myfile.txt", Constants.CBFSSYNC_ATTR_READONLY | Constants.CBFSSYNC_ATTR_HIDDEN);

SetFolderAttributes Method (CBSync Component)

This method sets the attributes of a local folder.

Syntax

func (obj *CBSync) SetFolderAttributes(Path string, Attributes int32) error

Remarks

This method sets the attributes of a local folder within the synchronization root. It may be used at any time, including from within events, to modify the attributes of a local folder.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The Attributes parameter is used to specify the attributes of the file or folder. The specified attributes replace existing attributes of the file or folder. The special value 0 indicates no modification will be made to the existing attributes. To clear all attributes of a file or folder, set the CBFSSYNC_ATTR_NORMAL attribute. To obtain the current attributes, use the GetFileAttributes or GetFolderAttributes method. The value passed in this parameter should be a binary OR of the following values:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

// Set a specific folder's attributes to be read-only and hidden. // "myfolder" is the name of the folder (without separators). cbsync.SetFolderAttributes("/myfolder", Constants.CBFSSYNC_ATTR_READONLY | Constants.CBFSSYNC_ATTR_HIDDEN);

SyncFile Method (CBSync Component)

This method initiates synchronization of the specified file.

Syntax

func (obj *CBSync) SyncFile(Path string) error

Remarks

This method initiates retrieval of the specified file. When this method is called, the file data will be downloaded, even if the file has been previously downloaded. After calling this method, the GetFileData event will fire. This method may be used to download a local copy of a file at any time, even if the user has not yet opened the file.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

// Synchronize a specific file. cbsync.SyncFile("/folder1/folder2/file.txt");

Uninstall Method (CBSync Component)

This method unregisters the synchronization root from the system and performs cleanup operations.

Syntax

func (obj *CBSync) Uninstall() error

Remarks

This method is used to unregister the synchronization root specified by SyncRootPath. In most cases, this method should be called only when the application using the component will be removed from the system. To simply stop the synchronization but leave the component registered, call the Deactivate method instead.

When this method is called, the component is unregistered and any online-only files and folders present in SyncRootPath are removed; thus, only files that contain data locally remain. For instance, if a file was previously opened in Windows and shows a green checkmark in Explorer, that file will remain after calling this method, whereas a file showing a blue cloud icon would not. The folder structure for remaining files is preserved when this method is called, but empty folders are deleted.

When calling this method, the following values must match the values used when Install was called:

Note: This method cannot be called within events.

On Windows, this method requires administrative rights to execute successfully. If the user account of the process that calls this method does not have such rights, the call will fail with an error, and the E_ACCESSDENIED HRESULT code will be reported in the WindowsLastError configuration setting.

UnpinFile Method (CBSync Component)

This method marks the file as unpinned so the local copy of the file data may be freed.

Syntax

func (obj *CBSync) UnpinFile(Path string) error

Remarks

This method unpins the file specified by Path that previously was pinned. When the file is unpinned, the local file data may be freed. To explicitly free previously downloaded file data, call ResetFile after calling this method. If ResetFile is not called, a local copy of the data may still be kept locally until the file system initiates the freeing of file data.

Note: This method only removes CBFSSYNC_ATTR_PINNED from the file's attributes. To set the CBFSSYNC_ATTR_UNPINNED attribute so that the file is converted to an online-only file and local file data are freed, use the SetFileAttributes method.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

macOS: This method is not supported.

UnpinFolder Method (CBSync Component)

This method marks the folder as unpinned so the local copy of the files within the folder may be freed.

Syntax

func (obj *CBSync) UnpinFolder(Path string) error

Remarks

This method unpins the folder specified by Path that previously was pinned. When the folder is unpinned, the local data for files within the folder may be freed. To explicitly free previously downloaded files, call ResetFolder after calling this method. If ResetFolder is not called, a local copy of the file data may still be kept locally until the file system initiates the freeing of file data.

Note: This method only removes CBFSSYNC_ATTR_PINNED from the folder's attributes. To set the CBFSSYNC_ATTR_UNPINNED attribute so that the folder is converted to an online-only folder and local file data are freed, use the SetFolderAttributes method.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

macOS: This method is not supported.

UpdateFile Method (CBSync Component)

This method is used to update a local file within the synchronization root.

Syntax

func (obj *CBSync) UpdateFile(Path string, Attributes int32, Size int64, CreationTime time.Time, LastAccessTime time.Time, ModificationTime time.Time) error

Remarks

This method allows for the updating of a local file within the synchronization root. The method may be used to update the attributes as well as the creation time, last access time, and modified time of a file. If updating the file's attributes is the only desired operation, the SetFileAttributes method may be used instead.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The Attributes parameter is used to specify the attributes of the file or folder. The specified attributes replace existing attributes of the file or folder. The special value 0 indicates no modification will be made to the existing attributes. To clear all attributes of a file or folder, set the CBFSSYNC_ATTR_NORMAL attribute. To obtain the current attributes, use the GetFileAttributes or GetFolderAttributes method. The value passed in this parameter should be a binary OR of the following values:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

The Size parameter must be set to the size of the file in bytes.

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time values specified in UTC. To indicate no change in the time when calling UpdateFile or UpdateFolder, use a DateTime value that is less than or equal to the Unix epoch of January 1, 1970.

// Update a file. // "myfile.txt" is the name of the file (without separators). // 0 represents the attributes since this is a file with no special attributes. // 100 is the size of the file in bytes. // FileCreationTime is a DateTime (in UTC). // FileLastAccessTime is a DateTime (in UTC). // FileLastWriteTime is a DateTime (in UTC). cbsync.UpdateFile("/myfile.txt", 0, 100, FileCreationTime, FileLastAccessTime, FileLastWriteTime); // Update a read-only hidden file. cbsync.UpdateFile("/myfile.txt", Constants.CBFSSYNC_ATTR_READONLY | Constants.CBFSSYNC_ATTR_HIDDEN, 100, FileCreationTime, FileLastAccessTime, FileLastWriteTime);

UpdateFolder Method (CBSync Component)

This method is used to update a local folder within the synchronization root.

Syntax

func (obj *CBSync) UpdateFolder(Path string, Attributes int32, CreationTime time.Time, LastAccessTime time.Time, ModificationTime time.Time) error

Remarks

This method allows for the updating of a local folder within the synchronization root. The method may be used to update the attributes as well as the creation time, last access time, and modified time of a folder. If updating the folder's attributes is the only desired operation, the SetFolderAttributes method may be used instead.

The Path parameter should be a path that begins with the directory separator and identifies the location of the file or folder within the synchronization root.

The Attributes parameter is used to specify the attributes of the file or folder. The specified attributes replace existing attributes of the file or folder. The special value 0 indicates no modification will be made to the existing attributes. To clear all attributes of a file or folder, set the CBFSSYNC_ATTR_NORMAL attribute. To obtain the current attributes, use the GetFileAttributes or GetFolderAttributes method. The value passed in this parameter should be a binary OR of the following values:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time values specified in UTC. To indicate no change in the time when calling UpdateFile or UpdateFolder, use a DateTime value that is less than or equal to the Unix epoch of January 1, 1970.

// Update a folder. // "myfolder" is the name of the folder (without separators). // 0 represents the attributes since this is a folder with no special attributes. // FolderCreationTime is a DateTime (in UTC). // FolderLastAccessTime is a DateTime (in UTC). // FolderLastWriteTime is a DateTime (in UTC). cbsync.UpdateFolder("/myfolder", 0, FolderCreationTime, FolderLastAccessTime, FolderLastWriteTime);

CancelTask Event (CBSync Component)

This event fires when an ongoing transfer of item data will not be completed and must be canceled.

Syntax

// CBSyncCancelTaskEventArgs carries the CBSync CancelTask event's parameters.
type CBSyncCancelTaskEventArgs struct {...}

func (args *CBSyncCancelTaskEventArgs) TaskId() int64
func (args *CBSyncCancelTaskEventArgs) Path() string
func (args *CBSyncCancelTaskEventArgs) ResultCode() int32
func (args *CBSyncCancelTaskEventArgs) SetResultCode(value int32)

// CBSyncCancelTaskEvent defines the signature of the CBSync CancelTask event's handler function.
type CBSyncCancelTaskEvent func(sender *CBSync, args *CBSyncCancelTaskEventArgs)

func (obj *CBSync) GetOnCancelTaskHandler() CBSyncCancelTaskEvent
func (obj *CBSync) SetOnCancelTaskHandler(handlerFunc CBSyncCancelTaskEvent)

Remarks

This event fires when the component has been notified that the ongoing transfer must be canceled. It can be fired in the same thread in which the transfer is handled or in another thread.

The TaskId parameter identifies the transfer operation to which this event applies. The TaskId value from this event will match the value provided by the event where the operation began.

The Path parameter represents the path of the file relative to the synchronization root; for example, "/MyFolder/MyFile.txt".

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

CreateFile Event (CBSync Component)

This event fires when a local file is created.

Syntax

// CBSyncCreateFileEventArgs carries the CBSync CreateFile event's parameters.
type CBSyncCreateFileEventArgs struct {...}

func (args *CBSyncCreateFileEventArgs) TaskId() int64
func (args *CBSyncCreateFileEventArgs) Path() string
func (args *CBSyncCreateFileEventArgs) Attributes() int32
func (args *CBSyncCreateFileEventArgs) Size() int64
func (args *CBSyncCreateFileEventArgs) CreationTime() time.Time
func (args *CBSyncCreateFileEventArgs) LastAccessTime() time.Time
func (args *CBSyncCreateFileEventArgs) LastModifiedTime() time.Time
func (args *CBSyncCreateFileEventArgs) ResultCode() int32
func (args *CBSyncCreateFileEventArgs) SetResultCode(value int32)

// CBSyncCreateFileEvent defines the signature of the CBSync CreateFile event's handler function.
type CBSyncCreateFileEvent func(sender *CBSync, args *CBSyncCreateFileEventArgs)

func (obj *CBSync) GetOnCreateFileHandler() CBSyncCreateFileEvent
func (obj *CBSync) SetOnCreateFileHandler(handlerFunc CBSyncCreateFileEvent)

Remarks

This event fires when the component detects that a new file has been created at the location specified by Path.

When a new file is created within the synchronization root, this event allows for the addition of the file to be acknowledged and replicated in the remote storage.

Use the GetFileData method to obtain the the data that should be sent to the remote storage.

When this event fires and communication with the remote storage is required, an application may use either of the two strategies for reporting the completion of the operation:

  • If the request can be completed quickly, set the ResultCode parameter to 0 and return from this event. Do not call FinalizeTask in this case.
  • If the request cannot be completed quickly, set the ResultCode parameter to CBFSSYNC_PENDING (0x21000001) and return from this event. The communication with the remote storage then may be completed outside of this event. After the request has been completed, call FinalizeTask to inform the component about the completion. When calling FinalizeTask , pass the value of the TaskId parameter of this event to FinalizeTask to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the FinalizeTask method; thus, it is important to record this value when an operation will be completed after the event handler has returned.

The Path parameter represents the path of the file relative to the synchronization root; for example, "/MyFolder/MyFile.txt".

The Size parameter specifies the new size of the file.

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time value, specified in UTC.

The Attributes parameter is a bitmask defining the attributes of the file. The possible attributes include the following:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

Note that when this event is fired, a change in the local synchronization root has already occurred. This change cannot be reversed by returning an error code from the event handler.

CreateFolder Event (CBSync Component)

This event fires when a local folder is created.

Syntax

// CBSyncCreateFolderEventArgs carries the CBSync CreateFolder event's parameters.
type CBSyncCreateFolderEventArgs struct {...}

func (args *CBSyncCreateFolderEventArgs) TaskId() int64
func (args *CBSyncCreateFolderEventArgs) Path() string
func (args *CBSyncCreateFolderEventArgs) Attributes() int32
func (args *CBSyncCreateFolderEventArgs) CreationTime() time.Time
func (args *CBSyncCreateFolderEventArgs) LastAccessTime() time.Time
func (args *CBSyncCreateFolderEventArgs) LastModifiedTime() time.Time
func (args *CBSyncCreateFolderEventArgs) ResultCode() int32
func (args *CBSyncCreateFolderEventArgs) SetResultCode(value int32)

// CBSyncCreateFolderEvent defines the signature of the CBSync CreateFolder event's handler function.
type CBSyncCreateFolderEvent func(sender *CBSync, args *CBSyncCreateFolderEventArgs)

func (obj *CBSync) GetOnCreateFolderHandler() CBSyncCreateFolderEvent
func (obj *CBSync) SetOnCreateFolderHandler(handlerFunc CBSyncCreateFolderEvent)

Remarks

This event fires when the component detects that a new folder has been created at the location specified by Path.

When a new folder is created within the synchronization root, this event allows for the addition of the folder to be acknowledged and replicated in the remote storage.

When this event fires and communication with the remote storage is required, an application may use either of the two strategies for reporting the completion of the operation:

  • If the request can be completed quickly, set the ResultCode parameter to 0 and return from this event. Do not call FinalizeTask in this case.
  • If the request cannot be completed quickly, set the ResultCode parameter to CBFSSYNC_PENDING (0x21000001) and return from this event. The communication with the remote storage then may be completed outside of this event. After the request has been completed, call FinalizeTask to inform the component about the completion. When calling FinalizeTask , pass the value of the TaskId parameter of this event to FinalizeTask to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the FinalizeTask method; thus, it is important to record this value when an operation will be completed after the event handler has returned.

The Path parameter represents the path of the folder relative to the synchronization root; for example, "/MyFolder/MyOtherFolder".

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time value, specified in UTC.

The Attributes parameter is a bitmask defining the attributes of the folder. The possible attributes include the following:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

Note that when this event is fired, a change in the local synchronization root has already occurred. This change cannot be reversed by returning an error code from the event handler.

DeleteFile Event (CBSync Component)

This event fires when a local file is deleted.

Syntax

// CBSyncDeleteFileEventArgs carries the CBSync DeleteFile event's parameters.
type CBSyncDeleteFileEventArgs struct {...}

func (args *CBSyncDeleteFileEventArgs) TaskId() int64
func (args *CBSyncDeleteFileEventArgs) Path() string
func (args *CBSyncDeleteFileEventArgs) DeleteFlags() int32
func (args *CBSyncDeleteFileEventArgs) ResultCode() int32
func (args *CBSyncDeleteFileEventArgs) SetResultCode(value int32)

// CBSyncDeleteFileEvent defines the signature of the CBSync DeleteFile event's handler function.
type CBSyncDeleteFileEvent func(sender *CBSync, args *CBSyncDeleteFileEventArgs)

func (obj *CBSync) GetOnDeleteFileHandler() CBSyncDeleteFileEvent
func (obj *CBSync) SetOnDeleteFileHandler(handlerFunc CBSyncDeleteFileEvent)

Remarks

This event fires when the local file identified by Path is deleted.

When this event fires and communication with the remote storage is required, an application may use either of the two strategies for reporting the completion of the operation:

  • If the request can be completed quickly, set the ResultCode parameter to 0 and return from this event. Do not call FinalizeTask in this case.
  • If the request cannot be completed quickly, set the ResultCode parameter to CBFSSYNC_PENDING (0x21000001) and return from this event. The communication with the remote storage then may be completed outside of this event. After the request has been completed, call FinalizeTask to inform the component about the completion. When calling FinalizeTask , pass the value of the TaskId parameter of this event to FinalizeTask to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the FinalizeTask method; thus, it is important to record this value when an operation will be completed after the event handler has returned.

The Path parameter represents the path of the file relative to the synchronization root; for example, "/MyFolder/MyFile.txt".

The DeleteFlags parameter specifies optional parameters of the operation and contains a combination of the following flags:

CBFSSYNC_DELETE_TO_BIN0x00000001An item was moved to Recycle Bin/Trash rather than deleted.

If the CBFSSYNC_DELETE_TO_BIN flag is set, the event handler should move the file to some location that acts as a Recycle Bin/Trash. If this flag is not set, the file is gone, and the event handler should delete the file on the remote side.

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

Note that when this event is fired, a change in the local synchronization root has already occurred. This change cannot be reversed by returning an error code from the event handler.

DeleteFolder Event (CBSync Component)

This event fires when a local folder is deleted.

Syntax

// CBSyncDeleteFolderEventArgs carries the CBSync DeleteFolder event's parameters.
type CBSyncDeleteFolderEventArgs struct {...}

func (args *CBSyncDeleteFolderEventArgs) TaskId() int64
func (args *CBSyncDeleteFolderEventArgs) Path() string
func (args *CBSyncDeleteFolderEventArgs) DeleteFlags() int32
func (args *CBSyncDeleteFolderEventArgs) ResultCode() int32
func (args *CBSyncDeleteFolderEventArgs) SetResultCode(value int32)

// CBSyncDeleteFolderEvent defines the signature of the CBSync DeleteFolder event's handler function.
type CBSyncDeleteFolderEvent func(sender *CBSync, args *CBSyncDeleteFolderEventArgs)

func (obj *CBSync) GetOnDeleteFolderHandler() CBSyncDeleteFolderEvent
func (obj *CBSync) SetOnDeleteFolderHandler(handlerFunc CBSyncDeleteFolderEvent)

Remarks

This event fires when the local folder identified by Path is deleted.

When this event fires and communication with the remote storage is required, an application may use either of the two strategies for reporting the completion of the operation:

  • If the request can be completed quickly, set the ResultCode parameter to 0 and return from this event. Do not call FinalizeTask in this case.
  • If the request cannot be completed quickly, set the ResultCode parameter to CBFSSYNC_PENDING (0x21000001) and return from this event. The communication with the remote storage then may be completed outside of this event. After the request has been completed, call FinalizeTask to inform the component about the completion. When calling FinalizeTask , pass the value of the TaskId parameter of this event to FinalizeTask to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the FinalizeTask method; thus, it is important to record this value when an operation will be completed after the event handler has returned.

The Path parameter represents the path of the folder relative to the synchronization root; for example, "/MyFolder/MyOtherFolder".

The DeleteFlags parameter specifies optional parameters of the operation and contains a combination of the following flags:

CBFSSYNC_DELETE_TO_BIN0x00000001An item was moved to Recycle Bin/Trash rather than deleted.

If the CBFSSYNC_DELETE_TO_BIN flag is set, the event handler should move the folder to some location that acts as a Recycle Bin/Trash. If this flag is not set, the folder is gone, and the event handler should delete the folder on the remote side.

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

Note that when this event is fired, a change in the local synchronization root has already occurred. This change cannot be reversed by returning an error code from the event handler.

Error Event (CBSync Component)

This event fires if an unhandled error occurs during an event.

Syntax

// CBSyncErrorEventArgs carries the CBSync Error event's parameters.
type CBSyncErrorEventArgs struct {...}

func (args *CBSyncErrorEventArgs) ErrorCode() int32
func (args *CBSyncErrorEventArgs) Description() string
// CBSyncErrorEvent defines the signature of the CBSync Error event's handler function.
type CBSyncErrorEvent func(sender *CBSync, args *CBSyncErrorEventArgs)

func (obj *CBSync) GetOnErrorHandler() CBSyncErrorEvent
func (obj *CBSync) SetOnErrorHandler(handlerFunc CBSyncErrorEvent)

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.

GetFileData Event (CBSync Component)

This event fires when file data are needed from the remote storage.

Syntax

// CBSyncGetFileDataEventArgs carries the CBSync GetFileData event's parameters.
type CBSyncGetFileDataEventArgs struct {...}

func (args *CBSyncGetFileDataEventArgs) TaskId() int64
func (args *CBSyncGetFileDataEventArgs) Path() string
func (args *CBSyncGetFileDataEventArgs) Offset() int64
func (args *CBSyncGetFileDataEventArgs) Length() int64
func (args *CBSyncGetFileDataEventArgs) ResultCode() int32
func (args *CBSyncGetFileDataEventArgs) SetResultCode(value int32)

// CBSyncGetFileDataEvent defines the signature of the CBSync GetFileData event's handler function.
type CBSyncGetFileDataEvent func(sender *CBSync, args *CBSyncGetFileDataEventArgs)

func (obj *CBSync) GetOnGetFileDataHandler() CBSyncGetFileDataEvent
func (obj *CBSync) SetOnGetFileDataHandler(handlerFunc CBSyncGetFileDataEvent)

Remarks

This event fires when the component needs to retrieve file data from the remote storage and put them into the local file identified by Path.

To handle the event properly, the data must be passed to the component by calling the PutFileData method one or more times. This can be accomplished in two ways:

  • The transfer may be completed within this event. This prevents the event from returning and is suitable for data transfer that can be completed quickly.
  • Alternatively, the ResultCode parameter can be set to CBFSSYNC_PENDING (0x21000001) to allow the event to return without delay, and the work can be completed separately.

After the data transfer is finished, the FinalizeTask method must be called to notify the component that the operation has been completed, as long as the event handler will be returned with success (i.e., ResultCode set to 0) or was previously returned with pending status (i.e., ResultCode set to CBFSSYNC_PENDING). In the case of any other error, the FinalizeTask method should not be called.

The TaskId parameter identifies the current operation and is required when calling both the PutFileData method and the FinalizeTask method; thus, it is important to record this value when an operation will be completed after the event handler has returned.

The Path parameter represents the path of the file relative to the synchronization root; for example, "/MyFolder/MyFile.txt".

The Offset and Length parameters specify the starting position of the data in the file to be retrieved and the expected size of the retrieved data, respectively.

It is possible that the retrieval will be canceled, in which case, the CancelTask event will fire.

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

ListDirectory Event (CBSync Component)

This event is fired when the contents of a remote directory need to be listed locally.

Syntax

// CBSyncListDirectoryEventArgs carries the CBSync ListDirectory event's parameters.
type CBSyncListDirectoryEventArgs struct {...}

func (args *CBSyncListDirectoryEventArgs) TaskId() int64
func (args *CBSyncListDirectoryEventArgs) Path() string
func (args *CBSyncListDirectoryEventArgs) Mask() string
func (args *CBSyncListDirectoryEventArgs) ResultCode() int32
func (args *CBSyncListDirectoryEventArgs) SetResultCode(value int32)

// CBSyncListDirectoryEvent defines the signature of the CBSync ListDirectory event's handler function.
type CBSyncListDirectoryEvent func(sender *CBSync, args *CBSyncListDirectoryEventArgs)

func (obj *CBSync) GetOnListDirectoryHandler() CBSyncListDirectoryEvent
func (obj *CBSync) SetOnListDirectoryHandler(handlerFunc CBSyncListDirectoryEvent)

Remarks

This event is fired by the component when it needs to list the contents of the remote directory specified by Path.

Note: The event is triggered at the discretion of the operating system. This means that the directory listings in the Path will not be automatically refreshed upon user action. Instead, updates should be manually reported by calling methods, such as CreateFile, CreateFolder, UpdateFile, UpdateFolder, DeleteFile, and DeleteFolder.

To handle the event properly, items within the directory must be reported by calling the ListFile and ListFolder methods for each file or folder being reported. This can be accomplished in two ways:

  • The listing may be completed within this event.
  • Alternatively, the ResultCode parameter may be set to CBFSSYNC_PENDING (0x21000001) to allow the event handler to return without delay, and the work can be completed separately. When the operation with the remote storage is performed in this manner, the FinalizeTask method must be called to inform the component that the operation has been completed.

The TaskId parameter identifies the current operation and is required when calling both the ListFile method and the FinalizeTask method; thus, it is important to record this value for later, when an operation is completed later than the event handler has returned.

The Path parameter represents the path of the file relative to the synchronization root; for example, "/MyFolder/MyFile.txt".

The Mask parameter specifies the filename mask that should be used by an event handler to filter the reported items. This value can contain any combination of valid filename characters and wildcards (the * and ? characters). Alternatively, the mask can be an exact filename (i.e., a value without any wildcards), because some applications query file information by specifying an exact filename in an enumeration.

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

Log Event (CBSync Component)

This log reports events that occur in the class.

Syntax

// CBSyncLogEventArgs carries the CBSync Log event's parameters.
type CBSyncLogEventArgs struct {...}

func (args *CBSyncLogEventArgs) Level() int32
func (args *CBSyncLogEventArgs) Message() string
// CBSyncLogEvent defines the signature of the CBSync Log event's handler function.
type CBSyncLogEvent func(sender *CBSync, args *CBSyncLogEventArgs)

func (obj *CBSync) GetOnLogHandler() CBSyncLogEvent
func (obj *CBSync) SetOnLogHandler(handlerFunc CBSyncLogEvent)

Remarks

This event fires when the component needs to notify an application or developers about something that happened internally. The verbosity is controlled by the LogLevel setting.

LogLevel indicates the level of the message. Possible values are as follows:

0 (None) No information is logged.
1 (Errors) Only errors are logged.
2 (Warnings) Errors and warnings are logged.
3 (Information - Default) Errors, warnings, and informational messages are logged.
4 (Debug) Debug data are logged.

Message is the log entry.

Note: This event will fire in the context of a dedicated worker thread. Keep handling of this event as quick as possible.

RenameFile Event (CBSync Component)

This event fires when a local file is about to be renamed or moved.

Syntax

// CBSyncRenameFileEventArgs carries the CBSync RenameFile event's parameters.
type CBSyncRenameFileEventArgs struct {...}

func (args *CBSyncRenameFileEventArgs) TaskId() int64
func (args *CBSyncRenameFileEventArgs) OldPath() string
func (args *CBSyncRenameFileEventArgs) NewPath() string
func (args *CBSyncRenameFileEventArgs) ResultCode() int32
func (args *CBSyncRenameFileEventArgs) SetResultCode(value int32)

// CBSyncRenameFileEvent defines the signature of the CBSync RenameFile event's handler function.
type CBSyncRenameFileEvent func(sender *CBSync, args *CBSyncRenameFileEventArgs)

func (obj *CBSync) GetOnRenameFileHandler() CBSyncRenameFileEvent
func (obj *CBSync) SetOnRenameFileHandler(handlerFunc CBSyncRenameFileEvent)

Remarks

This event fires when the system needs to notify the component that the local file located at OldPath is about to be renamed or moved.

When this event fires and communication with the remote storage is required, an application may use either of the two strategies for reporting the completion of the operation:

  • If the request can be completed quickly, set the ResultCode parameter to 0 and return from this event. Do not call FinalizeTask in this case.
  • If the request cannot be completed quickly, set the ResultCode parameter to CBFSSYNC_PENDING (0x21000001) and return from this event. The communication with the remote storage then may be completed outside of this event. After the request has been completed, call FinalizeTask to inform the component about the completion. When calling FinalizeTask , pass the value of the TaskId parameter of this event to FinalizeTask to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the FinalizeTask method; thus, it is important to record this value when an operation will be completed after the event handler has returned.

The OldPath parameter specifies the current path of the file.

The NewPath parameter specifies the new path of the file.

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

Note that when this event is fired, a change in the local synchronization root has already occurred. This change cannot be reversed by returning an error code from the event handler.

RenameFolder Event (CBSync Component)

This event fires when a local folder is about to be renamed or moved.

Syntax

// CBSyncRenameFolderEventArgs carries the CBSync RenameFolder event's parameters.
type CBSyncRenameFolderEventArgs struct {...}

func (args *CBSyncRenameFolderEventArgs) TaskId() int64
func (args *CBSyncRenameFolderEventArgs) OldPath() string
func (args *CBSyncRenameFolderEventArgs) NewPath() string
func (args *CBSyncRenameFolderEventArgs) ResultCode() int32
func (args *CBSyncRenameFolderEventArgs) SetResultCode(value int32)

// CBSyncRenameFolderEvent defines the signature of the CBSync RenameFolder event's handler function.
type CBSyncRenameFolderEvent func(sender *CBSync, args *CBSyncRenameFolderEventArgs)

func (obj *CBSync) GetOnRenameFolderHandler() CBSyncRenameFolderEvent
func (obj *CBSync) SetOnRenameFolderHandler(handlerFunc CBSyncRenameFolderEvent)

Remarks

This event fires when the system needs to notify the component that the local folder located at OldPath is about to be renamed or moved.

When this event fires and communication with the remote storage is required, an application may use either of the two strategies for reporting the completion of the operation:

  • If the request can be completed quickly, set the ResultCode parameter to 0 and return from this event. Do not call FinalizeTask in this case.
  • If the request cannot be completed quickly, set the ResultCode parameter to CBFSSYNC_PENDING (0x21000001) and return from this event. The communication with the remote storage then may be completed outside of this event. After the request has been completed, call FinalizeTask to inform the component about the completion. When calling FinalizeTask , pass the value of the TaskId parameter of this event to FinalizeTask to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the FinalizeTask method; thus, it is important to record this value when an operation will be completed after the event handler has returned.

The OldPath parameter specifies the current path of the folder.

The NewPath parameter specifies the new path of the folder.

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

Note that when this event is fired, a change in the local synchronization root has already occurred. This change cannot be reversed by returning an error code from the event handler.

ResetFile Event (CBSync Component)

This event is fired after the local copy of a file's data has been discarded.

Syntax

// CBSyncResetFileEventArgs carries the CBSync ResetFile event's parameters.
type CBSyncResetFileEventArgs struct {...}

func (args *CBSyncResetFileEventArgs) TaskId() int64
func (args *CBSyncResetFileEventArgs) Path() string
// CBSyncResetFileEvent defines the signature of the CBSync ResetFile event's handler function.
type CBSyncResetFileEvent func(sender *CBSync, args *CBSyncResetFileEventArgs)

func (obj *CBSync) GetOnResetFileHandler() CBSyncResetFileEvent
func (obj *CBSync) SetOnResetFileHandler(handlerFunc CBSyncResetFileEvent)

Remarks

This event is fired when the local copy of a file's data has been discarded. When files are downloaded, their data are stored both locally and remotely. At times, the local copy of the data may be purged while the file placeholder remains.

The local file data can be manually removed by calling the ResetFile method, or it may be initiated by the system. In the latter case, after the local copy of the file data has been purged, this event is fired to notify the user.

Following the firing of this event, the file placeholder will still be present, but no file data will be stored locally.

The Path parameter represents the path of the file relative to the synchronization root; for example, "/MyFolder/MyFile.txt".

The TaskId parameter is reserved for future use.

This event is provided for informational purposes only and does not require any immediate action.

UpdateFile Event (CBSync Component)

This event fires when a local file is updated.

Syntax

// CBSyncUpdateFileEventArgs carries the CBSync UpdateFile event's parameters.
type CBSyncUpdateFileEventArgs struct {...}

func (args *CBSyncUpdateFileEventArgs) TaskId() int64
func (args *CBSyncUpdateFileEventArgs) Path() string
func (args *CBSyncUpdateFileEventArgs) UpdateFlags() int32
func (args *CBSyncUpdateFileEventArgs) Attributes() int32
func (args *CBSyncUpdateFileEventArgs) Size() int64
func (args *CBSyncUpdateFileEventArgs) CreationTime() time.Time
func (args *CBSyncUpdateFileEventArgs) LastAccessTime() time.Time
func (args *CBSyncUpdateFileEventArgs) LastModifiedTime() time.Time
func (args *CBSyncUpdateFileEventArgs) ResultCode() int32
func (args *CBSyncUpdateFileEventArgs) SetResultCode(value int32)

// CBSyncUpdateFileEvent defines the signature of the CBSync UpdateFile event's handler function.
type CBSyncUpdateFileEvent func(sender *CBSync, args *CBSyncUpdateFileEventArgs)

func (obj *CBSync) GetOnUpdateFileHandler() CBSyncUpdateFileEvent
func (obj *CBSync) SetOnUpdateFileHandler(handlerFunc CBSyncUpdateFileEvent)

Remarks

This event fires when the component detects a change in the metadata or data of the local file identified by Path. Scenarios in which this event is fired include the following:

  • Modification of file content: The event captures changes to the content of a file, such as appending or removing data within a file. This ensures that the modified content can be synchronized between the local and remote storages.
  • Modification of file metadata: When changes are made to a file's metadata, such as timestamps and attributes, the event enables the corresponding metadata in the remote storage to be updated to match the local changes.

When file contents are updated, use the GetFileData method to obtain the data that should be sent to the remote storage.

When this event fires and communication with the remote storage is required, an application may use either of the two strategies for reporting the completion of the operation:

  • If the request can be completed quickly, set the ResultCode parameter to 0 and return from this event. Do not call FinalizeTask in this case.
  • If the request cannot be completed quickly, set the ResultCode parameter to CBFSSYNC_PENDING (0x21000001) and return from this event. The communication with the remote storage then may be completed outside of this event. After the request has been completed, call FinalizeTask to inform the component about the completion. When calling FinalizeTask , pass the value of the TaskId parameter of this event to FinalizeTask to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the FinalizeTask method; thus, it is important to record this value when an operation will be completed after the event handler has returned.

The Path parameter represents the path of the file relative to the synchronization root; for example, "/MyFolder/MyFile.txt".

The Size parameter specifies the new size of the file.

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time value, specified in UTC.

The Attributes parameter is a bitmask defining the attributes of the file. The possible attributes include the following:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

The UpdateFlags parameter indicates which information has been updated. This value is a combination of the following flags:

CBFSSYNC_ITEM_CTIME0x0002Creation time has been changed.

CBFSSYNC_ITEM_MTIME0x0004Modification (last write) time has been changed.

CBFSSYNC_ITEM_ATIME0x0008Last access time has been changed.

CBFSSYNC_ITEM_CHTIME0x0010Change time has been changed.

CBFSSYNC_ITEM_ATTRIBUTES0x0020File attributes or security flags have been updated.

CBFSSYNC_ITEM_CONTENT0x0040Files: content has been updated.

Not used for folders.

CBFSSYNC_ITEM_RESTORED_FROM_TRASH0x0080A file or folder was restored from Trash (macOS only).

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

UpdateFolder Event (CBSync Component)

This event fires when a local folder is updated.

Syntax

// CBSyncUpdateFolderEventArgs carries the CBSync UpdateFolder event's parameters.
type CBSyncUpdateFolderEventArgs struct {...}

func (args *CBSyncUpdateFolderEventArgs) TaskId() int64
func (args *CBSyncUpdateFolderEventArgs) Path() string
func (args *CBSyncUpdateFolderEventArgs) UpdateFlags() int32
func (args *CBSyncUpdateFolderEventArgs) Attributes() int32
func (args *CBSyncUpdateFolderEventArgs) CreationTime() time.Time
func (args *CBSyncUpdateFolderEventArgs) LastAccessTime() time.Time
func (args *CBSyncUpdateFolderEventArgs) LastModifiedTime() time.Time
func (args *CBSyncUpdateFolderEventArgs) ResultCode() int32
func (args *CBSyncUpdateFolderEventArgs) SetResultCode(value int32)

// CBSyncUpdateFolderEvent defines the signature of the CBSync UpdateFolder event's handler function.
type CBSyncUpdateFolderEvent func(sender *CBSync, args *CBSyncUpdateFolderEventArgs)

func (obj *CBSync) GetOnUpdateFolderHandler() CBSyncUpdateFolderEvent
func (obj *CBSync) SetOnUpdateFolderHandler(handlerFunc CBSyncUpdateFolderEvent)

Remarks

This event fires when the component detects a change in the metadata of the local folder identified by Path.

When changes are made to a folder's metadata, such as timestamps and attributes, the event enables the corresponding metadata in the remote storage to be updated to match the local changes.

When this event fires and communication with the remote storage is required, an application may use either of the two strategies for reporting the completion of the operation:

  • If the request can be completed quickly, set the ResultCode parameter to 0 and return from this event. Do not call FinalizeTask in this case.
  • If the request cannot be completed quickly, set the ResultCode parameter to CBFSSYNC_PENDING (0x21000001) and return from this event. The communication with the remote storage then may be completed outside of this event. After the request has been completed, call FinalizeTask to inform the component about the completion. When calling FinalizeTask , pass the value of the TaskId parameter of this event to FinalizeTask to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the FinalizeTask method; thus, it is important to record this value when an operation will be completed after the event handler has returned.

The Path parameter represents the path of the folder relative to the synchronization root; for example, "/MyFolder/MyOtherFolder".

The CreationTime, LastAccessTime, and LastModifiedTime parameters contain the corresponding time value, specified in UTC.

The Attributes parameter is a bitmask defining the attributes of the folder. The possible attributes include the following:

CBFSSYNC_ATTR_NORMAL0x00000001The item is a normal file or folder with no other attributes. This attribute may be used to clear any other attributes that may be set on the file or folder.

CBFSSYNC_ATTR_READONLY0x00000002The item is read-only.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_HIDDEN0x00000004The item is hidden.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_SYSTEM0x00000008The item is a system file or folder.

Note: This attribute is not used by CBFS Sync, but it can be set and retrieved.

CBFSSYNC_ATTR_PINNED0x00100000Indicates that the item is pinned and that the item's data are always available in the system.

This value is not used on macOS.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned and that locally cached data for this item are removed when the last handle to the file is closed.

This value is not used on macOS.

The UpdateFlags parameter indicates which information has been updated. This value is a combination of the following flags:

CBFSSYNC_ITEM_CTIME0x0002Creation time has been changed.

CBFSSYNC_ITEM_MTIME0x0004Modification (last write) time has been changed.

CBFSSYNC_ITEM_ATIME0x0008Last access time has been changed.

CBFSSYNC_ITEM_CHTIME0x0010Change time has been changed.

CBFSSYNC_ITEM_ATTRIBUTES0x0020File attributes or security flags have been updated.

CBFSSYNC_ITEM_CONTENT0x0040Files: content has been updated.

Not used for folders.

CBFSSYNC_ITEM_RESTORED_FROM_TRASH0x0080A file or folder was restored from Trash (macOS only).

When this event is fired, the ResultCode parameter will always be 0. If, however, the event cannot be handled successfully because of reasons such as unavailable resources or failed security checks, you can set it to an appropriate value to report an error. Please refer to the Error Codes section for the set of possible values. If an unhandled exception occurs within the event handler, the component will catch it and report an internal error.

Config Settings (CBSync 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.

CBSync Config Settings

DownloadNewFiles:   Whether to automatically download content for new files.

This configuration setting controls whether file content is automatically downloaded when a new remote file is detected. For instance, when the synchronization root is initially registered, the ListDirectory event is fired. Each new file reported from within this event that did not previously exist in SyncRootPath is considered a new file. If this setting is true, that file content is automatically downloaded. Files created by CreateFile are also considered new and this setting applies.

Note: Files are not pinned as a result of setting this to true and the system may purge the local data at a later time, which will cause ResetFile to fire.

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

ExcludedFiles:   A list of files to exclude.

This property specifies files that should be excluded from the synchronization process.

This property may be set to one or more file names or directory names. Files may be specified with or without a path, and with or without wildcards. If a path is specified, files in the indicated directory will be excluded. If no path is specified but wildcards are, matching files in all directories will be excluded.

Directories should end with a slash ("/" or "\", as appropriate.). If a directory is specified, all files and subdirectories in the specified directory will be excluded.

A pipe character ("|") should be used to separate multiple file or directory names.

The following examples illustrate the use of the property:

Example 1.

cbsync.Config("ExcludedFiles=*.tmp"); Example 2.

cbsync.Config("ExcludedFiles=*.bak | backup/");

ExcludeHiddenFiles:   Whether to process hidden files.

When a file's attributes or name indicate it is a hidden file, this configuration setting controls whether they are included in the synchronization process. If this setting is true and a file within the synchronization root is marked as a hidden file (the Win32 FILE_ATTRIBUTE_HIDDEN attribute is set or file name starts with . on Linux), then events related to changes for that file will not fire.

The default value is true.

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

ExcludeTemporaryFiles:   Whether to process temporary files.

On Windows, when a file's attributes indicate it is a temporary file, this setting controls whether they are included in the synchronization process. If this setting is true and a file within the synchronization root is marked as a temporary file (the Win32 FILE_ATTRIBUTE_TEMPORARY attribute is set), then events related to changes for that file will not fire.

This setting is applicable only on Windows. The default value is false.

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

LinuxFUSEParams:   A placeholder for additional parameters used for fine-tuning FUSE on Linux.

The string that the application passes is parsed, and for each argument, the fuse_opt_add_arg() function of FUSE is called. Arguments must start with "-" (dash); multiple arguments must be separated with a space.

Example: "-oallow_other -omax_read=4096" (without quotes).

LinuxIntermediateFolder:   Specifies the path to a local directory where intermediate file information will be stored.

On Linux, this configuration setting specifies the path on the local filesystem that the component will use to store intermediate files and cached data. The user should not interact with files at this location. The contents of this folder are managed by the component.

The default value is ~/.cbsync and the component will create the .cbsync folder under the user's home directory if it does not already exist.

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

LogLevel:   The level of detail that is logged.

This configuration setting controls the level of detail that is logged through the Log event. Possible values are as follows:

0 (None) No information is logged.
1 (Errors) Only errors are logged.
2 (Warnings) Errors and warnings are logged.
3 (Information - Default) Errors, warnings, and informational messages are logged.
4 (Debug) Debug data are logged.

MacDomainId:   Specifies the Id of the synchronization domain.

On macOS, this configuration setting specifies the Id of the synchronization domain. The value, together with MacDomainLabel, must be set for the Install and, later, Activate methods to be successful.

The Id must be set to a short alphanumeric string, unique for the file extension.

Multiple instances of the component may use different domain IDs to serve different data.

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

MacDomainLabel:   Specifies the label (display name) of the synchronization domain.

On macOS, this configuration setting specifies the human-readable label (display name) of the synchronization domain. This label is displayed in the user interface when the user adds and later uses the domain. The value, together with MacDomainId, is used by the Install method. If not set, the value of MacDomainId is used.

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

ResetPinnedFiles:   Whether to reset pinned files.

This configuration setting controls whether pinned files are reset when ResetFile or ResetFolder is called. When set to true, pinned files will be unpinned and reset. When set to false (default), pinned files will not be reset and will remain pinned.

SerializeEvents:   Whether events should always fire one by one rather than concurrently.

Windows: When this configuration setting is enabled, events may be fired in different worker threads, but there will never be more than one event fired at a time. The next event will fire only when the previous event handler finishes processing. When this setting is disabled, most events still fire one by one; however, GetFileData may fire in parallel and even multiple times concurrently.

Linux: When this configuration setting is enabled, the component fires events in the context of one background worker thread. When this setting is disabled, the component fires events in the context of multiple worker threads.

TrackOfficeLockFiles:   Whether to track MS Office lock files.

Lock files are created by Microsoft Office applications (e.g., Word, Excel, and PowerPoint) to indicate that an Office file is opened for editing. These files appear in the same location as the original MS Office file and can be identified by the prepended ~$ in the name.

This configuration setting controls how the component should handle these lock files. When set to true, the component will not synchronize lock files and will instead suspend the firing of events for the corresponding MS file until the lock file is removed, after which the component fires the UpdateFile event. When set to false (default), the component will treat the lock file as it would any other file.

WindowsLastError:   An additional error code returned by the OS.

The value of this configuration setting can be checked by an application if an error is reported by some method call or through the Error event.

WindowsRecycleBinURL:   A URL displayed by the system in the delete confirmation dialog.

If an online-only file is deleted, the system will prompt the user to confirm the deletion. This message may optionally include a URL for users to visit for more information. If not set (default), the URL is not included in the prompt. If it is set, a hyperlink is present in the message where the text of the link is the SyncRootLabel and the URL to which the link points is specified by this configuration setting. For example, if SyncRootLabel is set to My Test Label, a user would see the following message:

"Deleting an online-only file permanently removes it from your PC. If you need the file later, check your My Test Label recycle bin."

The text "My Test Label recycle bin" would include a hyperlink to the value specified in this configuration setting.

If set, the URL should include the scheme, such as "https://www.callback.com". The default value is an empty string and no link is present in the prompt.

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

WindowsStorageProviderAccount:   Unique string identifier of the account within an application.

This value is used as a part of the system-unique synchronization root identifier when it is registered. It can be any alphanumeric value. For instance, the current user's name or other identifier may be used.

By default, the value from SyncRootLabel is used. Each synchronization root must use a unique value.

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

WindowsStorageProviderId:   Unique string identifier of the application.

The value is used as a part of the system-unique synchronization root identifier when it is registered. It can be any alphanumeric value. For instance, the name of the application or other identifier may be used.

By default, the value from SyncRootLabel is used. Each synchronization root must use a unique value.

Note: This setting cannot be changed when Active is true, 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 (CBSync Component)

The component uses the following result codes. They are also available as constants for applications' convenience.

Events that include a ResultCode parameter expect the value to be one of the following codes:

CBSync Errors

0x21000001   Operation will be completed later. The CBFSSYNC_PENDING constant is provided for convenience and may be used in place of the numeric value.
0x21000002   Component is not active. The CBFSSYNC_ERR_SYNC_NOT_ACTIVE constant is provided for convenience and may be used in place of the numeric value.
0x21000003   Component is active. The CBFSSYNC_ERR_SYNC_IS_ACTIVE constant is provided for convenience and may be used in place of the numeric value.
0x21000004   Invalid parameter. The CBFSSYNC_ERR_INVALID_PARAMETER constant is provided for convenience and may be used in place of the numeric value.
0x21000005   Invalid handle. The CBFSSYNC_ERR_INVALID_HANDLE constant is provided for convenience and may be used in place of the numeric value.
0x21000006   Operation denied. The CBFSSYNC_ERR_OPERATION_DENIED constant is provided for convenience and may be used in place of the numeric value.
0x21000007   Component initialization failed. The CBFSSYNC_ERR_INITIALIZATION_FAILED constant is provided for convenience and may be used in place of the numeric value.
0x21000008   The Install method must be called before performing this operation. The CBFSSYNC_ERR_NOT_INSTALLED constant is provided for convenience and may be used in place of the numeric value.
0x21000009   No local data are associated with the current task. The CBFSSYNC_ERR_NO_DATA constant is provided for convenience and may be used in place of the numeric value.
0x2100000A   Reading of data failed due to the error reported by the operating system. The CBFSSYNC_ERR_DATA_READ_FAILED constant is provided for convenience and may be used in place of the numeric value.
0x21000010   Too many items returned during enumeration. The CBFSSYNC_ERR_TOO_MANY_ITEMS constant is provided for convenience and may be used in place of the numeric value.
0x21000011   Requested file or folder information was not provided. The CBFSSYNC_ERR_ITEM_INFO_NOT_PROVIDED constant is provided for convenience and may be used in place of the numeric value.
0x21000012   Requested file or folder was not found. The CBFSSYNC_ERR_ITEM_NOT_FOUND constant is provided for convenience and may be used in place of the numeric value.
0x21000013   File already exists. The CBFSSYNC_ERR_FILE_ALREADY_EXISTS constant is provided for convenience and may be used in place of the numeric value.
0x21000014   Invalid item name returned during enumeration. The CBFSSYNC_ERR_INVALID_ITEM_NAME constant is provided for convenience and may be used in place of the numeric value.
0x21000015   Invalid item Id returned during enumeration. The CBFSSYNC_ERR_INVALID_ITEM_ID constant is provided for convenience and may be used in place of the numeric value.
0x21000016   Invalid item attributes returned during enumeration. The CBFSSYNC_ERR_INVALID_ATTRIBUTES constant is provided for convenience and may be used in place of the numeric value.
0x21000017   Invalid item property value returned during enumeration. The CBFSSYNC_ERR_INVALID_ITEM_PROPERTY constant is provided for convenience and may be used in place of the numeric value.
0x21000030   Read operation failed. The CBFSSYNC_ERR_READ_OPERATION_ERROR constant is provided for convenience and may be used in place of the numeric value.
0x21000031   Read operation canceled. The CBFSSYNC_ERR_READ_OPERATION_CANCELED constant is provided for convenience and may be used in place of the numeric value.
0x21000041   Operating system API error. The CBFSSYNC_ERR_OS_ERROR constant is provided for convenience and may be used in place of the numeric value.

Special Use Errors

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.
1314   ERROR_PRIVILEGE_NOT_HELD: Reported by any method that requires elevated permissions if it is called without such permissions.