blooming8

Untitled

Oct 5th, 2023
814
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.56 KB | None | 0 0
  1. import os
  2.  
  3.  
  4. # Ripulisce la cartella degli screenshot così da inviare più velocemente gli allegati su Teams #
  5.  
  6. def program() -> None:
  7.  
  8.     path = 'C:/Users/Alessio Li Veli\OneDrive - Bit srl\Immagini\Screenshot'
  9.  
  10.     try:
  11.         if os.getcwd() != path:
  12.             os.chdir(path)
  13.  
  14.         for _, _, files in os.walk(path):
  15.             for file in files:
  16.                 os.remove(file)
  17.  
  18.         input("\nCartella Screnshot ripulita.\n")
  19.  
  20.     except Exception as exc:
  21.         print(exc)
  22.  
  23.     return
  24.  
  25.  
  26. if __name__ == '__main__':
  27.     program()
  28.  
Advertisement
Add Comment
Please, Sign In to add comment