storeObjectToDirectory(destinationUrl: URL,value: Record<string, unknown>,handlers: Iterable<ValueStorageHandler>,options?: Readonly<ValueStorageHandlerOptions>,): Promise<void>
Convenience wrapper around the handler builder in Handlers
and the
ValueStorageHandler.storeValue
directory storage handler method to write the contents
of an object to a directory in one step.
destinationUrl: URL
The destination in the file system of the directory to create, as a URL.
value: Record<string, unknown>
The object to store.
handlers: Iterable<ValueStorageHandler>
The value storage handlers to consult when storing the properties in the object.
optional
options: Readonly<ValueStorageHandlerOptions>
Options to control the specifics of the storage.
Promise<void>