CBSync Class

Properties   Methods   Events   Config Settings   Errors  

The CBSync class enables seamless synchronization between local files and Cloud Storage or other remote repositories.

Syntax

cbfssync.Cbsync

Remarks

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

Selecting a Synchronization Root

Each instance of the class is capable of synchronizing a local directory with a remote storage location. 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 is 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 resides within LinuxIntermediateFolder since all files within SyncRootPath are virtual.

Installation and Uninstallation

Before the class 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 ListItems event, which is used to populate the synchronization root with files and folders. The Activate method only needs to be called once, and events will continue to fire as needed.

Note that files and subfolders that already exist locally, but are not reported by a ListItems event handler, are considered newly created items and either UpdateItem or UpdateFolder will fire for each item.

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 class is active, handle the class's events to provide information as well as receive notifications about local updates. Note that events are fired on arbitrary threads and not the main thread where the class 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 class is active:

Event Usage
ListItems Fires during directory enumeration. This event is used to provide information about the contents of a remote directory.
GetItemData Fires during remote item retrieval. This event is used to provide file data that has been retrieved from the remote storage location.
CreateItem / CreateFolder Fire when a local item is created. These events are notifications, and the remote storage location should be updated accordingly.
DeleteItem / DeleteFolder Fire when a local item is deleted. These events are notifications, and the remote storage location should be updated accordingly.
RenameItem / RenameFolder Fire when a local item is renamed or moved. These events are notifications, and the remote storage location should be updated accordingly.
UpdateItem / UpdateFolder Fire when a local item is updated. These events are notifications, and the remote storage location should be updated accordingly.

When these events fire and communication with the remote storage location is required, there are two supported methods 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 location is performed in this manner, the TaskComplete method must be called to inform the class that the operation has been completed.

Some of these 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 pre-allocated blocks of unmanaged 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, resulting in 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 UpdateItem 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 UpdateItem 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 UpdateItem and UpdateFolder events for more details.

Synchronizing Remote Changes

If changes in the remote storage location 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 class:

  • 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 File Explorer. These icons are defined by the operating system and are the same icons used by OneDrive.

IconDescription
The blue cloud icon indicates the file or folder is only available 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 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 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 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 icons above.

Handling Errors

The class 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 an unhandled exception occurs in the event handler, it will be caught by the class and an internal error will be reported.

Property List


The following is the full list of the properties of the class 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 class with short descriptions. Click on the links for further details.

ActivateThis method prepares and starts the necessary mechanisms for synchronization.
ConfigSets or retrieves a configuration setting.
CreateFileThis method creates a local file within a synchronization root.
CreateFolderThis method creates a local folder within a synchronization root.
DeactivateThis method stops the synchronization operation.
DeleteFileThis method deletes a local file from a synchronization root.
DeleteFolderThis method deletes a local folder from a synchronization root.
GetFileAttributesThis method returns the attributes of a local file.
GetFilePathThis method returns the absolute path to the local file that should be sent to the remote storage.
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.
ListItemThis method is used to provide information about an 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.
PutItemDataThis method is used to provide the file data that were requested during item retrieval.
ResetFileThis method removes the local copy of the data for the specified item.
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.
TaskCompleteThis method notifies the class that the asynchronous data transfer operation has been completed.
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 a synchronization root.
UpdateFolderThis method is used to update a local folder within a synchronization root.

Event List


The following is the full list of the events fired by the class 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.
CreateFolderThis event fires when a folder is created locally, enabling the creation to be reflected in the corresponding remote folder.
CreateItemThis event fires when a file is created locally, enabling the creation to be reflected in the corresponding remote item.
DeleteFolderThis event fires when a local folder is deleted, enabling the deletion to be reflected in the corresponding remote folder.
DeleteItemThis event fires when a local file is deleted, enabling the deletion to be reflected in the corresponding remote item.
ErrorThis event fires if an unhandled error occurs during an event.
FileResetThis event is fired after the local copy of a file's data has been discarded.
GetItemDataThis event fires when file data are needed from the remote storage.
ListItemsThis event is fired when the contents of a remote directory need to be listed locally.
LogThis log reports events that occur in the class.
RenameFolderThis event fires when a local folder is about to be renamed or moved, enabling the change to be reflected in the corresponding remote folder.
RenameItemThis event fires when a local file is about to be renamed or moved, enabling the change to be reflected in the corresponding remote item.
UpdateFolderThis event fires when a folder is updated locally, enabling the update to be reflected in the corresponding remote folder.
UpdateItemThis event fires when a file is updated locally, enabling the update to be reflected in the corresponding remote item.

Config Settings


The following is a list of config settings for the class 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.
ResetPinnedFilesWhether to reset pinned files.
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 Class)

This property reflects whether the class is active.

Syntax


public boolean isActive();


Default Value

False

Remarks

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

This property is read-only and not available at design time.

SyncRootIcon Property (CBSync Class)

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

Syntax


public String getSyncRootIcon();


public void setSyncRootIcon(String syncRootIcon);

Default Value

""

Remarks

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

If set, Windows will use the specified icon for the virtual folder visible in 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 only applicable on Windows. This property has no effect on other platforms.

SyncRootLabel Property (CBSync Class)

This property specifies a label for the folder.

Syntax


public String getSyncRootLabel();


public void setSyncRootLabel(String syncRootLabel);

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 Explorer.

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

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

SyncRootPath Property (CBSync Class)

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

Syntax


public String getSyncRootPath();


public void setSyncRootPath(String syncRootPath);

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.

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

Activate Method (Cbsync Class)

This method prepares and starts the necessary mechanisms for synchronization.

Syntax

public void activate();

Remarks

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

Before calling this method, invoke the Install method to perform system-specific registration procedures if the synchronization root has not previously been registered. If files or folders exist locally in SyncRootPath that were not synchronized before, they are treated as newly created files when this method is called and are discovered, meaning events will fire as needed to provide an opportunity for the remote storage to properly reflect the synchronization root.

Note that 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 local system requests data from the remote storage location, such as when listing the directory or opening a file.
  • Local changes have been made that should be synchronized to the remote storage location, such as when a new file is created or an existing file is modified.
  • Remote changes have been made that should be synchronized to the local file system via the CreateFile, CreateFolder, DeleteFile, DeleteFolder, UpdateFile and UpdateFolder methods.

Note: This method cannot be called within events.

Config Method (Cbsync Class)

Sets or retrieves a configuration setting.

Syntax

public String config(String configurationString);

Remarks

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

These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, 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 Class)

This method creates a local file within a synchronization root.

Syntax

public void createFile(String path, int attributes, long size, java.util.Date creationTime, java.util.Date lastAccessTime, java.util.Date lastModifiedTime);

Remarks

This method creates a local file in a synchronization root and optionally initiates retrieval of its data from a 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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

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 1st, 1970.

// Create a new file placeholder. // "/folder1/folder2/new_file.txt" is the path to the file. // 0 represents the attributes since 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 since 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 Class)

This method creates a local folder within a synchronization root.

Syntax

public void createFolder(String path, int attributes, java.util.Date creationTime, java.util.Date lastAccessTime, java.util.Date lastModifiedTime);

Remarks

This method creates a local folder in a synchronization root. If the CBFSSYNC_ATTR_PINNED attribute is set, the class 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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

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 1st, 1970.

// Create a new folder in the synchronization root. // "/folder1/folder2/new_folder" is the path to the folder. // 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.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 since 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 Class)

This method stops the synchronization operation.

Syntax

public void deactivate();

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 that 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 have previously 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 class uses a dedicated thread. If there exist open handles to items in a synchronization root directory, FUSE doesn't finish its operations, while the class waits for FUSE to finish. The class can forcefully stop FUSE operations, but only in the application that uses the class didn't set a handler for the SIGINT signal. If such a handler is set, the class 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 class 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 Class)

This method deletes a local file from a synchronization root.

Syntax

public void deleteFile(String path);

Remarks

This method deletes a local file from a synchronization root but does not delete the file from the remote storage. The DeleteItem event fires for the newly deleted file after this method successfully returns.

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 Class)

This method deletes a local folder from a synchronization root.

Syntax

public void deleteFolder(String path, boolean deleteChildren);

Remarks

This method deletes a local folder from a synchronization root but does not delete it from the remote storage. The DeleteFolder event fires for the newly deleted folder after this method successfully returns.

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);

GetFileAttributes Method (Cbsync Class)

This method returns the attributes of a local file.

Syntax

public int getFileAttributes(String path);

Remarks

This method returns the attributes of a local file within a 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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

GetFilePath Method (Cbsync Class)

This method returns the absolute path to the local file that should be sent to the remote storage.

Syntax

public String getFilePath(long taskId);

Remarks

This method may be used from within the CreateItem and UpdateItem events to obtain an absolute path to the local file containing data which was changed and should be sent to the remote storage. This method can be used to return the location of the local file so that it may be read and data can be sent to the remote storage location.

This method returns different values depending on the OS in use:

  • In Windows, this returns the equivalent of combining SyncRootPath and the Path parameter of the CreateItem or UpdateItem event.
  • In Linux, this returns the equivalent of combining LinuxIntermediateFolder and the Path parameter of the event.
  • In macOS, this returns a URL corresponding to the local file data location.

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

// Call this method from within the CreateItem or UpdateItem event handlers. // 123456789 corresponds to the TaskId parameter of the event. // If the SyncRootPath property is set to "C:\temp" and the "myfile.txt" file was accessed, // then GetFilePath will return "C:\temp\myfile.txt" in Windows. string myLocalPath = cbsync.GetFilePath(123456789); // Use the path returned by this method when determining which local file is to be read and upload to the remote storage.

GetFileStatus Method (Cbsync Class)

This method returns the download status of a local file.

Syntax

public int getFileStatus(String path);

Remarks

This method returns the download status of a local file within a 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. Refer to the following table for more information.

IconDescription
The blue cloud icon indicates the file or folder is only available 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 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 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 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 icons above.

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 Class)

This method returns the attributes of a local folder.

Syntax

public int getFolderAttributes(String path);

Remarks

This method returns the attributes of a local folder within a 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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

GetFolderStatus Method (Cbsync Class)

This method returns the download status of a local folder.

Syntax

public int getFolderStatus(String path);

Remarks

This method returns the download status of a local folder within a 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. Refer to the following table for more information.

IconDescription
The blue cloud icon indicates the file or folder is only available 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 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 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 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 icons above.

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 Class)

This method registers the synchronization root with the system.

Syntax

public void install();

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.

In 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.

This method must be called once for each synchronization root, but it does not need to be called again unless the Uninstall method is invoked to remove the registration. Note that the registration performed by this method is persistent and will remain even if the application exits or the class is deactivated as a result of calling the Deactivate method.

In Linux, this method checks that FUSE is installed.

Note: This method cannot be called within events.

In Windows, this method requires administrative rights to execute successfully. If the user account of the process that calls this method doesn't have such rights, the call will fail with the CBFSSYNC_ERR_INITIALIZATION_FAILED error and E_ACCESSDENIED HRESULT code reported in the WindowsLastError configuration setting.

ListItem Method (Cbsync Class)

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

Syntax

public void listItem(long taskId, String itemName, boolean isDir, int attributes, long size, java.util.Date creationTime, java.util.Date lastAccessTime, java.util.Date lastModifiedTime);

Remarks

This method may be called from within the ListItems event to provide detailed information about an item contained in the directory or after ListItems returns to supply it asynchronously.

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

The ItemName parameter should contain the name of the file or folder without separators.

The IsDir parameter is used to indicate when the item is a folder.

The Attributes parameter is used to specify the attributes of the item. Available attributes are:

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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

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 it must be called in the same thread that the event was originally fired on.

// Return information about a file. // 123456789 is the e.TaskId value from the ListItems event. // "myfile.txt" is the name of the file (without separators). // IsDir parameter set to false indicates the item is a file. // 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.ListItem(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.ListItem(123456789, "myfile.txt", false, Constants.CBFSSYNC_ATTR_READONLY | Constants.CBFSSYNC_ATTR_HIDDEN, 100, FileCreationTime, FileLastAccessTime, FileLastWriteTime); // Return information about a directory. // IsDir parameter set to true indicates the item is a directory. // 0 represents the file size because size is not applicable to directories. cbsync.ListItem(123456789, "myfolder", true, 0, 0, FileCreationTime, FileLastAccessTime, FileLastWriteTime);

PinFile Method (Cbsync Class)

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

Syntax

public void pinFile(String path);

Remarks

This method pins the file specified by Path. When the file is pinned, a download is initiated if the file data has not previously been downloaded. Once the file data has been downloaded, the file is marked as pinned, meaning the file is always available on the system even when no Internet connection is available. Refer to the following table for more information.

IconDescription
The blue cloud icon indicates the file or folder is only available 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 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 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 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 icons above.

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.

PinFolder Method (Cbsync Class)

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

Syntax

public void pinFolder(String path);

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. Refer to the following table for more information.

IconDescription
The blue cloud icon indicates the file or folder is only available 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 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 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 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 icons above.

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.

PutItemData Method (Cbsync Class)

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

Syntax

public void putItemData(long taskId, byte[] buffer, int index, int count);

Remarks

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

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

When the OS must retrieve file data, the GetItemData 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 via the Buffer, where Count bytes of data will be read starting at the given Index. These data may either be supplied all at once or in chunks over multiple calls to this method.

Once all file data has been provided and the transfer is complete, inform the class by calling the TaskComplete method.

For example, if GetItemData 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.PutItemData(e.TaskId, buffer, 0, 1024); cbsync.TaskComplete(e.TaskId, 0); // Pass data in three separate chunks totaling 1024 bytes. cbsync.PutItemData(e.TaskId, buffer, 0, 512); cbsync.PutItemData(e.TaskId, buffer, 512, 100); cbsync.PutItemData(e.TaskId, buffer, 612, 412); cbsync.TaskComplete(e.TaskId, 0);

ResetFile Method (Cbsync Class)

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

Syntax

public void resetFile(String path);

Remarks

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

When files are downloaded, their data is 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 Class)

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

Syntax

public void resetFolder(String path);

Remarks

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

When files are downloaded, their data is 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 Class)

This method sets the attributes of a local file.

Syntax

public void setFileAttributes(String path, int attributes);

Remarks

This method sets the attributes of a local file within a 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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

// 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 Class)

This method sets the attributes of a local folder.

Syntax

public void setFolderAttributes(String path, int attributes);

Remarks

This method sets the attributes of a local folder within a 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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

// 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 Class)

This method initiates synchronization of the specified file.

Syntax

public void syncFile(String path);

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 GetItemData 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");

TaskComplete Method (Cbsync Class)

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

Syntax

public void taskComplete(long taskId, int errorCode);

Remarks

This method must be called to inform the class 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 without blocking the event by setting its ResultCode parameter to CBFSSYNC_PENDING (0x21000001). The event will then return, after which operations to the remote storage location can be performed to synchronize the changes. Once the synchronization operations are complete, this method must be called to indicate that the transfer is complete.

The TaskId parameter should be set to the value originally provided by the event whose operations will be complete asynchronously; thus, it is important to record 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.

Uninstall Method (Cbsync Class)

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

Syntax

public void uninstall();

Remarks

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

When this method is called, the class is unregistered and any online-only files and folders present in SyncRootPath are removed; thus, only files which contain data locally remain. For instance, if a file was previously opened in Windows and shows a green check mark 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.

In Windows, this method requires administrative rights to execute successfully. If the user account of the process that calls this method doesn't have such rights, the call will fail with the CBFSSYNC_ERR_INITIALIZATION_FAILED error and E_ACCESSDENIED HRESULT code reported in the WindowsLastError configuration setting.

UnpinFile Method (Cbsync Class)

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

Syntax

public void unpinFile(String path);

Remarks

This method unpins the file specified by Path which has previously been 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 that 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 is 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.

UnpinFolder Method (Cbsync Class)

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

Syntax

public void unpinFolder(String path);

Remarks

This method unpins the folder specified by Path which has previously been 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 that 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 is 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.

UpdateFile Method (Cbsync Class)

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

Syntax

public void updateFile(String path, int attributes, long size, java.util.Date creationTime, java.util.Date lastAccessTime, java.util.Date modificationTime);

Remarks

This method allows for the updating of a local file within a 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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

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 1st, 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 Class)

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

Syntax

public void updateFolder(String path, int attributes, java.util.Date creationTime, java.util.Date lastAccessTime, java.util.Date modificationTime);

Remarks

This method allows for the updating of a local folder within a 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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

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 1st, 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 Class)

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

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void cancelTask(CbsyncCancelTaskEvent e) {}
  ...
}

public class CbsyncCancelTaskEvent {
  public long taskId;
  public String path;
  public int resultCode;
}

Remarks

This event fires when the class has been notified that the ongoing transfer must be canceled, and 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 the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

CreateFolder Event (Cbsync Class)

This event fires when a folder is created locally, enabling the creation to be reflected in the corresponding remote folder.

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void createFolder(CbsyncCreateFolderEvent e) {}
  ...
}

public class CbsyncCreateFolderEvent {
  public long taskId;
  public String path;
  public int attributes;
  public java.util.Date creationTime;
  public java.util.Date lastAccessTime;
  public java.util.Date lastModifiedTime;
  public int resultCode;
}

Remarks

This event fires when the class 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 location.

When this event fires and communication with the remote storage location is required, there are two supported methods 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 TaskComplete 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 location may then be completed outside of this event. After the request has been completed call TaskComplete to inform the class about the completion. When TaskComplete is called, the value of the TaskId parameter of this event must be passed to TaskComplete to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the TaskComplete 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:

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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

When the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

CreateItem Event (Cbsync Class)

This event fires when a file is created locally, enabling the creation to be reflected in the corresponding remote item.

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void createItem(CbsyncCreateItemEvent e) {}
  ...
}

public class CbsyncCreateItemEvent {
  public long taskId;
  public String path;
  public int attributes;
  public long size;
  public java.util.Date creationTime;
  public java.util.Date lastAccessTime;
  public java.util.Date lastModifiedTime;
  public int resultCode;
}

Remarks

This event fires when the class 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 location.

When this event fires and communication with the remote storage location is required, there are two supported methods 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 TaskComplete 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 location may then be completed outside of this event. After the request has been completed call TaskComplete to inform the class about the completion. When TaskComplete is called, the value of the TaskId parameter of this event must be passed to TaskComplete to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the TaskComplete 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:

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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

Use the GetFilePath method to obtain the location of the data that should be sent to a remote storage.

When the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

DeleteFolder Event (Cbsync Class)

This event fires when a local folder is deleted, enabling the deletion to be reflected in the corresponding remote folder.

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void deleteFolder(CbsyncDeleteFolderEvent e) {}
  ...
}

public class CbsyncDeleteFolderEvent {
  public long taskId;
  public String path;
  public int deleteFlags;
  public int resultCode;
}

Remarks

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

When this event fires and communication with the remote storage location is required, there are two supported methods 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 TaskComplete 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 location may then be completed outside of this event. After the request has been completed call TaskComplete to inform the class about the completion. When TaskComplete is called, the value of the TaskId parameter of this event must be passed to TaskComplete to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the TaskComplete 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 the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

DeleteItem Event (Cbsync Class)

This event fires when a local file is deleted, enabling the deletion to be reflected in the corresponding remote item.

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void deleteItem(CbsyncDeleteItemEvent e) {}
  ...
}

public class CbsyncDeleteItemEvent {
  public long taskId;
  public String path;
  public int deleteFlags;
  public int resultCode;
}

Remarks

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

When this event fires and communication with the remote storage location is required, there are two supported methods 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 TaskComplete 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 location may then be completed outside of this event. After the request has been completed call TaskComplete to inform the class about the completion. When TaskComplete is called, the value of the TaskId parameter of this event must be passed to TaskComplete to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the TaskComplete 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 the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

Error Event (Cbsync Class)

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

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void error(CbsyncErrorEvent e) {}
  ...
}

public class CbsyncErrorEvent {
  public int errorCode;
  public String description;
}

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.

FileReset Event (Cbsync Class)

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

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void fileReset(CbsyncFileResetEvent e) {}
  ...
}

public class CbsyncFileResetEvent {
  public long taskId;
  public String path;
}

Remarks

This event is fired when the local copy of a file's data has been discarded. When files are downloaded, their data is 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 either 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.

GetItemData Event (Cbsync Class)

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

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void getItemData(CbsyncGetItemDataEvent e) {}
  ...
}

public class CbsyncGetItemDataEvent {
  public long taskId;
  public String path;
  public long offset;
  public long length;
  public int resultCode;
}

Remarks

This event fires when the class 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 class by calling the PutItemData 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 TaskComplete 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 TaskComplete method should not be called.

The TaskId parameter identifies the current operation and is required when calling both the PutItemData method and the TaskComplete 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 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 the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

ListItems Event (Cbsync Class)

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

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void listItems(CbsyncListItemsEvent e) {}
  ...
}

public class CbsyncListItemsEvent {
  public long taskId;
  public String path;
  public String mask;
  public int resultCode;
}

Remarks

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

It is important to note that 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 ListItem method for each item being reported. 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. When the operation with the remote storage location is performed in this manner, the TaskComplete method must be called to inform the class that the operation has been completed.

The TaskId parameter identifies the current operation and is required when calling both the ListItem method and the TaskComplete 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 Mask parameter allows you to specify a filename mask for filtering the results. It can contain any combination of valid filename characters and wildcards such as * and ?. Alternatively, it can be an exact filename without any wildcards if you need to query file information by specifying an exact filename in the enumeration.

When the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

Log Event (Cbsync Class)

This log reports events that occur in the class.

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void log(CbsyncLogEvent e) {}
  ...
}

public class CbsyncLogEvent {
  public int level;
  public String message;
}

Remarks

This event fires when the class 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.

RenameFolder Event (Cbsync Class)

This event fires when a local folder is about to be renamed or moved, enabling the change to be reflected in the corresponding remote folder.

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void renameFolder(CbsyncRenameFolderEvent e) {}
  ...
}

public class CbsyncRenameFolderEvent {
  public long taskId;
  public String oldPath;
  public String newPath;
  public int resultCode;
}

Remarks

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

When this event fires and communication with the remote storage location is required, there are two supported methods 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 TaskComplete 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 location may then be completed outside of this event. After the request has been completed call TaskComplete to inform the class about the completion. When TaskComplete is called, the value of the TaskId parameter of this event must be passed to TaskComplete to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the TaskComplete 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 the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

RenameItem Event (Cbsync Class)

This event fires when a local file is about to be renamed or moved, enabling the change to be reflected in the corresponding remote item.

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void renameItem(CbsyncRenameItemEvent e) {}
  ...
}

public class CbsyncRenameItemEvent {
  public long taskId;
  public String oldPath;
  public String newPath;
  public int resultCode;
}

Remarks

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

When this event fires and communication with the remote storage location is required, there are two supported methods 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 TaskComplete 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 location may then be completed outside of this event. After the request has been completed call TaskComplete to inform the class about the completion. When TaskComplete is called, the value of the TaskId parameter of this event must be passed to TaskComplete to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the TaskComplete 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 the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

UpdateFolder Event (Cbsync Class)

This event fires when a folder is updated locally, enabling the update to be reflected in the corresponding remote folder.

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void updateFolder(CbsyncUpdateFolderEvent e) {}
  ...
}

public class CbsyncUpdateFolderEvent {
  public long taskId;
  public String path;
  public int updateFlags;
  public int attributes;
  public java.util.Date creationTime;
  public java.util.Date lastAccessTime;
  public java.util.Date lastModifiedTime;
  public int resultCode;
}

Remarks

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

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

When this event fires and communication with the remote storage location is required, there are two supported methods 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 TaskComplete 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 location may then be completed outside of this event. After the request has been completed call TaskComplete to inform the class about the completion. When TaskComplete is called, the value of the TaskId parameter of this event must be passed to TaskComplete to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the TaskComplete 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:

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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

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 the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

UpdateItem Event (Cbsync Class)

This event fires when a file is updated locally, enabling the update to be reflected in the corresponding remote item.

Syntax

public class DefaultCbsyncEventListener implements CbsyncEventListener {
  ...
  public void updateItem(CbsyncUpdateItemEvent e) {}
  ...
}

public class CbsyncUpdateItemEvent {
  public long taskId;
  public String path;
  public int updateFlags;
  public int attributes;
  public long size;
  public java.util.Date creationTime;
  public java.util.Date lastAccessTime;
  public java.util.Date lastModifiedTime;
  public int resultCode;
}

Remarks

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

  • 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 storage locations.
  • Modification of file attributes: When changes are made to a file's attributes, such as permissions, ownership, timestamps, or other metadata, the event enables the corresponding attributes in the remote storage to be updated to match the local changes.

When this event fires and communication with the remote storage location is required, there are two supported methods 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 TaskComplete 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 location may then be completed outside of this event. After the request has been completed call TaskComplete to inform the class about the completion. When TaskComplete is called, the value of the TaskId parameter of this event must be passed to TaskComplete to identify the completed operation.

The TaskId parameter identifies the current operation and is required when calling the TaskComplete 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:

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 always available on the system. This value is only applicable in Windows.

CBFSSYNC_ATTR_UNPINNED0x00200000Indicates that the item is unpinned. This value is only applicable in Windows.

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 file contents are updated, use the GetFilePath method to obtain the location of the data that should be sent to a remote storage.

When the event is fired, the ResultCode parameter will always be 0. However, if the event cannot be handled successfully due to 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. In case an unhandled exception occurs within the event handler, the class will catch it and report an internal error.

Config Settings (Cbsync Class)

The class 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 class, access to these internal properties is provided through the Config method.

CBSync Config Settings

DownloadNewFiles:   Whether to automatically download content for new files.

This 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 ListItems event is fired. Each new file reported from within this event which 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 that 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 FileReset 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 filenames 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

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

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 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 filename 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 only applicable 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.

This setting specifies the path on the local filesystem that the class 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 class.

The default value is ~/.cbsync and the class 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.

ResetPinnedFiles:   Whether to reset pinned files.

This 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.

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 setting controls how the class should handle these lock files. When set to true, the class 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 class fires the UpdateItem event. When set to false (default), the class will treat lock files as it would any other file.

WindowsLastError:   An additional error code returned by the OS.

The value of this setting can be checked by an application if an error is reported by some method call or via 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 setting. For instance if SyncRootLabel is set to My Test Label the message a user would see is:

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

Where the text "My Test Label recycle bin" is a hyperlink to the value specified in this setting.

If set, the URL should include the scheme, for instance "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 class 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 Class)

The class uses the error codes listed below. They are also available as constants for applications' convenience. On Linux, the class uses the FUSE component error codes, i.e. Unix/Linux system error codes.

Events that include a ResultCode or ErrorCode parameter expect the value to be one of the codes listed below.

CBSync Errors

0x21000001   CBFSSYNC_PENDING: Operation will be completed later.
0x21000002   CBFSSYNC_ERR_SYNC_NOT_ACTIVE: Component is not active.
0x21000003   CBFSSYNC_ERR_SYNC_IS_ACTIVE: Component is active.
0x21000004   CBFSSYNC_ERR_INVALID_PARAMETER: Invalid parameter.
0x21000005   CBFSSYNC_ERR_INVALID_HANDLE: Invalid handle.
0x21000006   CBFSSYNC_ERR_OPERATION_DENIED: Operation denied.
0x21000007   CBFSSYNC_ERR_INITIALIZATION_FAILED: Component initialization failed.
0x21000008   CBFSSYNC_ERR_NOT_INSTALLED: The Install method must be called before performing this operation.
0x21000010   CBFSSYNC_ERR_TOO_MANY_ITEMS: Too many items returned during enumeration.
0x21000011   CBFSSYNC_ERR_ITEM_INFO_NOT_PROVIDED: Requested file or folder information was not provided.
0x21000012   CBFSSYNC_ERR_ITEM_NOT_FOUND: Requested file or folder was not found.
0x21000013   CBFSSYNC_ERR_FILE_ALREADY_EXISTS: File already exists.
0x21000014   CBFSSYNC_ERR_INVALID_ITEM_NAME: Invalid item name returned during enumeration.
0x21000015   CBFSSYNC_ERR_INVALID_ITEM_ID: Invalid item Id returned during enumeration.
0x21000016   CBFSSYNC_ERR_INVALID_ATTRIBUTES: Invalid item attributes returned during enumeration.
0x21000017   CBFSSYNC_ERR_INVALID_ITEM_PROPERTY: Invalid item property value returned during enumeration.
0x21000030   CBFSSYNC_ERR_READ_OPERATION_ERROR: Read operation failed.
0x21000031   CBFSSYNC_ERR_READ_OPERATION_CANCELED: Read operation canceled.
0x21000041   CBFSSYNC_ERR_OS_ERROR: Operating system API error.

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.