Skip to main content
Open topic with navigation CAPL Functions » ISO11783 » File Server Interaction Layer (FS IL) » FSIL_SetNodeProperty

FSIL_SetNodeProperty

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

  • long FSIL_SetNodeProperty( char propertyName[], long propertyValue); // form 1
  • long FSIL_SetNodeProperty( dbNode fs, char propertyName[], long propertyValue); // form 2
  • long FSIL_SetNodeProperty( char propertyName[],char propertyValue[]); // form 3
  • long FSIL_SetNodeProperty( dbNode fs, char propertyName[], char propertyValue[]); // form 4

Description

Changes an internal property of the File Server node.

Parameters

Return Values

  • 0: Property has been set successfully
  • < 0: An error has occurred: IL Error Code

Example

Example form 2, 4
void SetNodeProperties()
{
  // Set File Server version 3
  FSIL_SetNodeProperty(FS, "fsVersion", 3);
  // Set root directory for file server volumes
  FSIL_SetNodeProperty(FS, "rootDirectory", "ISOBUS_FSRootDir");
}