c# - how many times a file has been downloaded -


i creating web browser using c#, , need specific data web pages loaded in browser.

the pages loading download scripts. data want is: number of times file has been downloaded.

i want save value in text.

what code can use this, or can start? appreciated.

most web browsers have own storage. mozilla uses sqlite things.

whenever app/browser needs retrieve remote resource (url of kind), log database table.

perhaps use sqlite this. decent start create history table this:

 url           --varchar(max) lastaccessed  --datetime totalrequests --int 

Comments

Popular posts from this blog

delphi - TJvHidDeviceController "DevicePath" always showing "\" -

web applications - Making Python scripts work on MAMP -

cocoa - Converting NSString to keyCode+modifiers for AXUIElementPostKeyboardEvent -