Whenever the uploading process happens through the Browsers rather than IE, the path belongs to the file from client side systems is showing like \"c:/fakepath/x.jpg\"
This post shows a way to remove the 'fakepath' display:
// Change the node's value by removing the fake path inputNode.value = fileInput.value.replace("C:\fakepath\", "");
// Change the node's value by removing the fake path
inputNode.value = fileInput.value.replace("C:\fakepath\", "");