NodeOPCUA API Documentation
    Preparing search index...
    interface FileOptions {
        filename: string;
        fileSystem?: AbstractFs;
        maxChunkSize?: number;
        maxSize?: number;
        mimeType?: string;
        nodeId?: NodeIdLike;
        refreshFileContentFunc?: () => Promise<void>;
    }
    Index

    Properties

    filename: string

    the filaname of the physical file which is managed by the OPCUA filetpye

    fileSystem?: AbstractFs
    maxChunkSize?: number

    the maximum number of bytes that can be read from the file in a single read call

    • if not specified or 0, we assume Int32 limit
    maxSize?: number

    the maximum allowed size of the physical file.

    mimeType?: string

    an optional mimeType

    nodeId?: NodeIdLike
    refreshFileContentFunc?: () => Promise<void>