Use Case / Problem
Problem Statement
I'm exporting a Fabric workspace to my local filesystem for backup and version control. My workspace uses folders to organize items logically—by feature, department, or data source—but the current export functionality strips away this structure entirely.
Current Limitation
The export command flattens the folder hierarchy. When I export an item located at MyWorkspace/Sales Reports/Q1_Report.Report, it creates Q1_Report.Report/ directly in the output directory, completely discarding the Sales Reports/ parent folder. This eliminates the organizational context that's critical for understanding the project.
Impact on Workflow
This limitation breaks DevOps and GitOps practices. In code-managed Fabric environments, folder structure isn't just organizational—it's fundamental to the project architecture. Without it, I can't:
- Navigate locally: The flat structure makes it nearly impossible to find items quickly or understand relationships between assets.
- Conduct meaningful code reviews: Git diffs lose context when the logical grouping disappears, making it harder for teams to review changes effectively.
- Automate deployments: Re-importing assets while preserving the intended workspace organization becomes manual and error-prone.
Requested Enhancement
Preserve the full folder hierarchy during workspace export. If an item exists at MyWorkspace/Sales Reports/Q1_Report.Report, the export should create Sales Reports/Q1_Report.Report/ in the output directory, maintaining the complete path structure.
This would enable seamless integration with modern development workflows and make Fabric workspaces truly manageable as code.
Proposed Solution
Specific commands or functionality:
Extend the existing export command with a --preserve-folders flag to maintain the workspace's folder hierarchy during export.
fab export <workspace_name> -o <output_path> --preserve-folders
Expected behavior and output:
With the --preserve-folders flag enabled, the export command replicates the complete folder structure from the Fabric workspace to the local filesystem.
Example:
Starting with this workspace structure in Fabric:
/MyWorkspace.Workspace/
├── Reports/
│ └── Sales_Report.Report
└── Notebooks/
└── Data_Processing.Notebook
Current Behavior (fab export MyWorkspace.Workspace -o ./local_export --all):
./local_export/
├── Sales_Report.Report/
│ └── ... (item files)
└── Data_Processing.Notebook/
└── ... (item files)
All items export to a flat structure, losing the original folder organization.
Expected Behavior (fab export MyWorkspace.Workspace -o ./local_export --all --preserve-folders):
./local_export/
├── Reports/
│ └── Sales_Report.Report/
│ └── ... (item files)
└── Notebooks/
└── Data_Processing.Notebook/
└── ... (item files)
The original folder hierarchy is preserved, making it easier to understand project organization.
Integration with existing fabric-cli features:
This enhancement naturally extends the export command and strengthens the CLI's filesystem metaphor established by commands like ls, cd, and mkdir. It also sets the foundation for a complementary import enhancement that could automatically recreate folder structures in target workspaces, enabling true round-trip workflows.
Alternatives Considered
No response
Impact Assessment
Implementation Attestation
Implementation Notes
- Relevant Fabric REST APIs:
This feature can be efficiently implemented using three core APIs that minimize the number of calls needed:
-
GET /v1/workspaces/{workspaceId}/folders?recursive=True: Found in src/fabric_cli/client/fab_api_folders.py, this single call retrieves the entire folder hierarchy for a workspace—no recursive GET /folders/{folderId} calls required. The response includes each folder's id, displayName, and parentFolderId.
-
GET /v1/workspaces/{workspaceId}/items: This API (in fab_api_workspace.py) returns a flat list of all workspace items. The critical property is folderId, which links each item to its parent folder in the hierarchy. Root-level items won't have a folderId.
-
POST /v1/workspaces/{workspaceId}/items/{itemId}/getDefinition: The existing API used by the export command (fab_api_item.py) to fetch an item's actual definition content. This part of the logic would remain unchanged.
-
Command Structure or Argument Patterns:
A new optional flag should be added to the export command in src/fabric_cli/parsers/fab_fs_parser.py. A good name would be --preserve-folders.
-
Compatibility Concerns:
To ensure backward compatibility, this new behavior should only be triggered when the --preserve-folders flag is present. The default behavior of the export command (flattening the directory structure) should remain unchanged to avoid breaking existing user scripts and workflows.
Use Case / Problem
Problem Statement
I'm exporting a Fabric workspace to my local filesystem for backup and version control. My workspace uses folders to organize items logically—by feature, department, or data source—but the current export functionality strips away this structure entirely.
Current Limitation
The
exportcommand flattens the folder hierarchy. When I export an item located atMyWorkspace/Sales Reports/Q1_Report.Report, it createsQ1_Report.Report/directly in the output directory, completely discarding theSales Reports/parent folder. This eliminates the organizational context that's critical for understanding the project.Impact on Workflow
This limitation breaks DevOps and GitOps practices. In code-managed Fabric environments, folder structure isn't just organizational—it's fundamental to the project architecture. Without it, I can't:
Requested Enhancement
Preserve the full folder hierarchy during workspace export. If an item exists at
MyWorkspace/Sales Reports/Q1_Report.Report, the export should createSales Reports/Q1_Report.Report/in the output directory, maintaining the complete path structure.This would enable seamless integration with modern development workflows and make Fabric workspaces truly manageable as code.
Proposed Solution
Specific commands or functionality:
Extend the existing
exportcommand with a--preserve-foldersflag to maintain the workspace's folder hierarchy during export.Expected behavior and output:
With the
--preserve-foldersflag enabled, the export command replicates the complete folder structure from the Fabric workspace to the local filesystem.Example:
Starting with this workspace structure in Fabric:
Current Behavior (
fab export MyWorkspace.Workspace -o ./local_export --all):All items export to a flat structure, losing the original folder organization.
Expected Behavior (
fab export MyWorkspace.Workspace -o ./local_export --all --preserve-folders):The original folder hierarchy is preserved, making it easier to understand project organization.
Integration with existing fabric-cli features:
This enhancement naturally extends the
exportcommand and strengthens the CLI's filesystem metaphor established by commands likels,cd, andmkdir. It also sets the foundation for a complementaryimportenhancement that could automatically recreate folder structures in target workspaces, enabling true round-trip workflows.Alternatives Considered
No response
Impact Assessment
Implementation Attestation
Implementation Notes
This feature can be efficiently implemented using three core APIs that minimize the number of calls needed:
GET /v1/workspaces/{workspaceId}/folders?recursive=True: Found insrc/fabric_cli/client/fab_api_folders.py, this single call retrieves the entire folder hierarchy for a workspace—no recursiveGET /folders/{folderId}calls required. The response includes each folder'sid,displayName, andparentFolderId.GET /v1/workspaces/{workspaceId}/items: This API (infab_api_workspace.py) returns a flat list of all workspace items. The critical property isfolderId, which links each item to its parent folder in the hierarchy. Root-level items won't have afolderId.POST /v1/workspaces/{workspaceId}/items/{itemId}/getDefinition: The existing API used by theexportcommand (fab_api_item.py) to fetch an item's actual definition content. This part of the logic would remain unchanged.Command Structure or Argument Patterns:
A new optional flag should be added to the
exportcommand insrc/fabric_cli/parsers/fab_fs_parser.py. A good name would be--preserve-folders.Compatibility Concerns:
To ensure backward compatibility, this new behavior should only be triggered when the
--preserve-foldersflag is present. The default behavior of theexportcommand (flattening the directory structure) should remain unchanged to avoid breaking existing user scripts and workflows.