ValidateFileAccess checks if we can read the file and it meets size requirements.
(path string)
| 180 | |
| 181 | // ValidateFileAccess checks if we can read the file and it meets size requirements. |
| 182 | func ValidateFileAccess(path string) error { |
| 183 | return validate.ValidateInputFile(path) |
| 184 | } |
| 185 | |
| 186 | // IsStdinPipe detects if stdin is a pipe (not a terminal). |
| 187 | func IsStdinPipe() bool { |
nothing calls this directly
no test coverage detected