Skip to content

Instantly share code, notes, and snippets.

@samukasmk
Created January 29, 2025 20:40
Show Gist options
  • Save samukasmk/c3c18bfcdeabf0a8257cf99d8a79f41d to your computer and use it in GitHub Desktop.
Save samukasmk/c3c18bfcdeabf0a8257cf99d8a79f41d to your computer and use it in GitHub Desktop.
Check by regex if path of temporary file (starts with /tmp and not ends with /)
import re
if re.match(r'^/tmp/(?!.*/$).*$', file_path):
os.remove(file_path)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment