klochko7 opened a new issue #407:
URL: https://github.com/apache/cordova-plugin-file/issues/407


   Hi all ! Could anyone suggest please, is it possible to get date when file 
was created ? I copy file to my phone from desktop and property 
lastModifiedDate returned me time when I copy file to the folder but not when 
file was created.
   
   ```
       win.resolveLocalFileSystemURL(this.settingsProvider + 
this.settingsProvider.settings.folder + '/' + result[i].name, 
function(fileEntry) {
   
                           fileEntry.file(function(file) {
   
                             console.log("capture file", file.lastModifiedDate);
   
                           },    err => {
                             resolve(false);
   
                           });
   
                         },  err => {
                           resolve(false);
   
                         });
   ```
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to