Skip to content

Instantly share code, notes, and snippets.

@dmwyatt
Last active October 25, 2023 22:09
Show Gist options
  • Save dmwyatt/c5d1081bd115d7c6e5af to your computer and use it in GitHub Desktop.
Save dmwyatt/c5d1081bd115d7c6e5af to your computer and use it in GitHub Desktop.
[Check if file is executable.]
def is_exe(filepath):
return os.path.isfile(filepath) and os.access(filepath, os.X_OK)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment