File :: path - File path
The property contains the file path, which is either a complete or a relative path (relative to the current directory).
Return value: Name ( odaba::String & )
Implementation overview
- Get file path
File :: path (  ) - Change file path
File :: path ( sFilePath )
Implementation details
-
Get file path
const odaba::String File  :: path (  )
The function returns the file path.
to list
-
Change file path
const odaba::String File  :: path ( odaba::String &sFilePath )
The function allows setting the file path. When setting the file path for an open file, the file will be closed. In order to check, whether opening the file has succeeded, isOpen() may be called.
- sFilePath - Complete file path
to list