Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active March 31, 2024 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pointofpresence/0bef88daa59b63eaa32eaf90dc3356e2 to your computer and use it in GitHub Desktop.
Save pointofpresence/0bef88daa59b63eaa32eaf90dc3356e2 to your computer and use it in GitHub Desktop.
Python: Определить, является ли путь файлом или директорией
os.path.isfile("bob.txt") # Does bob.txt exist? Is it a file, or a directory?
os.path.isdir("bob")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment