If Impresora1.PrintSupported=False Then
Msgbox("Android PDF Printer not supported.", "Error")
End If
'Save a List of all files on Download folder, before save PDF from Android Printer
Starter.lista_archivos_antes.AddAll(File.ListFiles(File.DirRootExternal&"/Download"))
'Print Webview
Impresora1.PrintWebView("job", WebView1)
Sleep(5000)
Dim archivo As String
' Function where I compare 2 list of files, get the diferents and save on var "archivo"
archivo = functions.buscar_archivo_a_copiar
functions.FileMove(File.DirRootExternal&"/Download", archivo, NewPath, "new.pdf"$)
ToastMessageShow("File Saved.", False)