I am trying to build a web application which can do this: 1. Through the web application User selects some files present on his machine's filesystem. 2. Web application then extracts metadata of selected files like filename, size, filetype and stores it in a database at server.
So I need two things - 1. web app should be able to access the filesystem of user and 2. web app should be able to extract metadata of selected files.
Is it possible to do this?
Thanks!