Created
January 29, 2025 20:40
-
-
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 /)
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
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