Is there a way to delete files on a client computer after they've been uploaded to a server?
My web application allows users to upload files to a server and I'm trying to find a way to have the original files deleted from the computer on which they reside. Specifically, the web application provides the user with the ability to delete files; when the user deletes them from the web server, the local copies of the file should be deleted as well.
Would a signed Java Applet be the best solution? Any ideas / suggestions?