Skip to content

Instantly share code, notes, and snippets.

@FloPinguin
Created February 5, 2020 16:37
Show Gist options
  • Save FloPinguin/04c4edbf44f323755c84e87133b4c63d to your computer and use it in GitHub Desktop.
Save FloPinguin/04c4edbf44f323755c84e87133b4c63d to your computer and use it in GitHub Desktop.
Wait for network share in python
import os
import time
share = 'U:'
while True:
print("Checking share availability")
if os.path.isdir(share):
print ("Available!")
raise SystemExit
else:
print("Not available - Waiting 15s")
time.sleep(15)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment