doesFileExist

PHOTO EMBED

Sat Sep 18 2021 17:52:21 GMT+0000 (Coordinated Universal Time)

Saved by @krschy #javascript

function doesFileExist(urlToFile) {
	var xhr = new XMLHttpRequest();
	xhr.open("HEAD", urlToFile, false);
	xhr.send();

	if (xhr.status == "404") {
		return false;
	} else {
		return true;
	}
}
content_copyCOPY