Node.js - bucket.file.exists()

This is reference documentation for the Nitric Node.js SDK. To learn about Buckets and Storage in Nitric start with the Storage docs.

Determine if a file exists in a bucket.

import { bucket } from '@nitric/sdk'
const assets = bucket('assets').allow('read')
const exists = await assets.file('images/logo.png').exists()

Examples

Determine if a file exists

import { bucket } from '@nitric/sdk'
const assets = bucket('assets').allow('read')
const exists = await assets.file('images/logo.png').exists()
Last updated on Apr 3, 2025