E7026 Stdlib Validation Errors
chdir-failed
failed to change directory
When this occurs
Program cannot change to the specified directory
Example error message
error[E7026]:
failed to change directory: chdir /nonexistent: no such file or directory
How to fix
Verify the target directory exists with `io.exists()` and `io.is_dir()`. Check that you have execute permission on the directory.