Skip to main content
Version: Next

createFilesystemReadDirAction()

Home > @backstage/plugin-scaffolder-backend > createFilesystemReadDirAction

Creates new action that enables reading directories in the workspace.

Signature:

createFilesystemReadDirAction: () => import("@backstage/plugin-scaffolder-node").TemplateAction<{
recursive: boolean;
paths: string[];
}, {
files: {
name: string;
path: string;
fullPath: string;
}[];
folders: {
name: string;
path: string;
fullPath: string;
}[];
}, "v1">

Returns:

import("@backstage/plugin-scaffolder-node").TemplateAction<{ recursive: boolean; paths: string[]; }, { files: { name: string; path: string; fullPath: string; }[]; folders: { name: string; path: string; fullPath: string; }[]; }, "v1">