Created
August 9, 2024 22:45
-
-
Save sullemanhossam/e225529afb9218117e8f0d45ae9dc8c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package utilities | |
import ( | |
"fmt" | |
"os" | |
) | |
func FilePathValidity(path string) error { | |
// Check if the script path is valid | |
info, err := os.Stat(path) | |
if os.IsNotExist(err) { | |
return fmt.Errorf("script file does not exist at path: %s", path) | |
} | |
if err != nil { | |
return fmt.Errorf("error checking script file: %w", err) | |
} | |
if !info.Mode().IsRegular() { | |
return fmt.Errorf("path is not a regular file: %s", path) | |
} | |
return nil | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment