If you printout File object in Chrome console with something simple like this:
<input type="file" onchange="console.info(this.files);" />
you will see among other properties an always empty webkitRelativePath property:
fileName: "07.png"
fileSize: 33022
lastModifiedDate: Date
name: "07.png"
size: 33022
type: "image/png"
webkitRelativePath: ""
__proto__: File
What is it's purpose? And how it can be leveraged?