Checks if the file exists in S3. Uses HTTP HEAD request to efficiently check existence without downloading.
Symbol
S3File.exists
@returns
Promise resolving to true if file exists, false otherwise
// Basic existence check
if (await file.exists()) {
console.log("File exists in S3");
}