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

FSIL_OnCurrentDirectoryChanged (Callback)

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

void FSIL_OnCurrentDirectoryChanged( dword clientAddress, char currentDirectory[]);

Description

Is called from the FS IL if a client has changed its current directory.

Parameters

  • clientAddress: Address of the File Server client which has changed its current directory.
  • currentDirectory: Path of the current directory (relative to the root directory).

Return Values

Example

void FSIL_OnCurrentDirectoryChanged( dword clientAddress, char currentDirectory[])
{
  write("Client with address %u has changed it current directory to '%s'", clientAddress, currentDirectory);
}