Service for saving images from clipboard
So I want to write a service for a friend that will save his screenshots from the snipping tool to a folder on hi PC. The reason that I'd prefer for it to be a service is that my idea is that this process will just start as he logs in and listens for copy events, then once such event is triggered, it checks if whats in the clipboard is a png and if it is, save it to some folder(on his desktop or whatever not too important).
Im aware that you need a window context to access the clipboard on windows using the form library, but i wonder if theres a way to listen to those events without winforms so i can write this tool as a service.
Any ideas?
Im aware that you need a window context to access the clipboard on windows using the form library, but i wonder if theres a way to listen to those events without winforms so i can write this tool as a service.
Any ideas?