CBFS Storage 2020 Python Edition

Questions / Feedback?

path_separator Property

The path separator character to use when returning vault paths.

Syntax

def get_path_separator() -> int: ...
def set_path_separator(value: int) -> None: ...

path_separator = property(get_path_separator, set_path_separator)

Default Value

92

Remarks

This property specifies the path separator character that the class APIs should use when returning a vault path. Valid values are:

CBFSSTORAGE_PSC_BACKSLASH92Backslash ('\').

Windows path separator.

CBFSSTORAGE_PSC_SLASH47Forward slash ('/').

Unix-style path separator.

Note that this property is just a convenience; applications are free to use either of the above characters as path separators when passing path strings to the class's APIs.

Note: This property cannot be changed when active is True, and cannot be changed within events.

Copyright (c) 2021 Callback Technologies, Inc. - All rights reserved.
CBFS Storage 2020 Python Edition - Version 20.0 [Build 8031]