0
Why the code below saves the file one over the other?
I wish that every screenshot generates a separate file within the specified folder.
import datetime
import pyautogui
import time
#armazena o nome do arquivo no formato dinâmico de ano-mês-dia_hora minuto_segundo, assim: "2018-05-09_224510.png"
nomeArquivo = datetime.datetime.now().strftime('%Y-%M-%d_%H%M%S'+'.png')
#loop para ficar tirando foto da tela de 10 em 10 segudos.
while True:
foto = pyautogui.screenshot() #faz a foto
foto.save('C://Users//WJRS//' + nomeArquivo) #salva na pasta indicada.
time.sleep(10) #atraso de 10 segundos entre uma screenshot e outra.
Poxa vida! Verdade! Muito obrigado Anderson Carlos. I confess that I was exhausted yesterday, after 8 hours of work and 3 more hours of studies I was no longer well... Thank you very much!
– Wilson Junior