Skip to content

Instantly share code, notes, and snippets.

@sullemanhossam
Created August 9, 2024 22:45
Show Gist options
  • Save sullemanhossam/e225529afb9218117e8f0d45ae9dc8c4 to your computer and use it in GitHub Desktop.
Save sullemanhossam/e225529afb9218117e8f0d45ae9dc8c4 to your computer and use it in GitHub Desktop.
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