:orphan: .. title:: CONFIG_FS_MGMT_PATH_SIZE .. kconfig:: CONFIG_FS_MGMT_PATH_SIZE CONFIG_FS_MGMT_PATH_SIZE ######################## *Maximum file path length* Type: ``int`` Help ==== .. code-block:: none Limits the maximum path length for file operations, in bytes. A buffer of this size gets allocated on the stack during handling of file upload and download commands. Direct dependencies =================== \ :kconfig:`MCUMGR_CMD_FS_MGMT ` && \ :kconfig:`MCUMGR ` *(Includes any dependencies from ifs and menus.)* Default ======= - 64 Kconfig definition ================== At ``/mgmt/mcumgr/Kconfig:117`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:35`` → ``/mgmt/Kconfig:9`` Menu path: (Top) → Sub Systems and OS Services → Device Management → mcumgr Support → Command Handlers → Enable mcumgr handlers for file management (insecure) .. code-block:: kconfig config FS_MGMT_PATH_SIZE int "Maximum file path length" default 64 depends on MCUMGR_CMD_FS_MGMT && MCUMGR help Limits the maximum path length for file operations, in bytes. A buffer of this size gets allocated on the stack during handling of file upload and download commands. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*