0

I am use Kendo Upload, how to get creation date a file?

    function onUpload(e) {
         e.files //I can get modified date only
    } 

anyone can help me to get creation date by using kendo or normal jquery?

thank you

Sadikhasan
  • 18,365
  • 21
  • 80
  • 122
norton faris
  • 5
  • 1
  • 3

1 Answers1

0

This information is never sent to the server when you use a file input to upload a file. Only the filename, mime type and contents are sent with multipart/form-data. You could use the HTML5 File API to obtain this information from the file before uploading it.

Please see this question on details.

Community
  • 1
  • 1