November 2017
Beginner to intermediate
288 pages
7h 33m
English
//Grab a reference for the Root Directory. let rootRef = firebase.storage().ref(); //Let's grab a reference for our file. let imageRef = rootRef.child('path-to-file/<file- name>.<file-ext>'); //No let's get the file metadata. imageRef.getMetadata() .then((meta) => { //Meta function parameter represent our file metadata. console.log(meta); }) .catch(err => console.log(err));
Congratulations, by now you've successfully got the metadata of the ...
Read now
Unlock full access