Attention
These docs are a bit ambitious. The steps described are accurate but IronPLC cannot yet run programs.
P0025¶
- Code
P0025
- Message
Unable to read directory
This error occurs when the compiler is unable to read a directory, typically when trying to initialize a project from a directory path.
Example¶
This error typically occurs when:
The specified directory does not exist
You don’t have permission to read the directory
The path points to a file instead of a directory
The directory is corrupted or inaccessible
# Examples that would cause this error:
ironplcc check /nonexistent/directory/ # Directory doesn't exist
ironplcc check /root/private/ # Permission denied
ironplcc check /path/to/file.st # Path is a file, not directory
To fix this error, ensure that:
The directory path exists
You have read permissions for the directory
The path actually points to a directory, not a file
The filesystem is functioning correctly