I've seen some posts regarding access to files on a client machine by a webpage, namely this question.
I'm trying to hop on the "continuously update in the cloud" paradigm for some algorithms I am writing so my users can access the latest versions by simply accessing the webpage. This requires that the program/webpage can start with a directory and recursively inspect files within it and compute results based on what is found. In the end it also should be able to write the results file to the client's filesystem.
One of the answers in that previous question mentions Google Gears but that has since been discontinued in favor of HTML5. Is access to a client directory possible within HTML5? How?
I know why access by any webpage to local files is a security risk, but for my purpose I have no problem to ask the user for the appropriate permissions.