Link to home
Start Free TrialLog in
Avatar of dnorvell
dnorvellFlag for United States of America

asked on

Check-out web-based file and download to specific client filesystem location

I am trying to accomplish web-based file check-out / check-in capability where files on the server can be checked-out and downloaded to a specific location in the client filesystem, edited and then uploaded.  I've been able to accomplish just about all of the steps using HTML5 and FreeASPUpload, but am hitting a wall in the ability to download from the web-server to a specific location on the client filesystem.  I need to support Chrome, Firefox, IE and Safari.

Does anyone have any code samples, links or reccomendations on how to write a downloaded files to a specific location in the client filesystem?  I don't have a problem is they have to go through a one-time client setup or if it requires some level of trust relationship.  I just need to keep it simple so the relative path on the client mimics the relative path on the server so clients can find the files they downloaded and so we can direct them to the correct client file when it comes time to upload and check-in once they complete edits.

Thanks!
Avatar of Rob
Rob
Flag of Australia image

To access the filesystem you'll either need to write an add-on/extension for each browser or your own stand alone app for each OS.  The browser on it's own just isn't allowed access to the users filesystem without the addition of an applet or activex control.
ASKER CERTIFIED SOLUTION
Avatar of Rob
Rob
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dnorvell

ASKER

Exactly what I needed.  Thanks!