You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Please add here as many scenarios as in the Story
20
+
21
+
> Normally this acceptance criteria is tested in ADAPT workspace in PROD
22
+
23
+
<details>
24
+
<summary>Scenario 1 - proof this scenario passes</summary>
25
+
</details>
26
+
27
+
<details>
28
+
<summary>Scenario 2 - proof this scenario passes</summary>
29
+
</details>
30
+
31
+
<details>
32
+
<summary>Scenario X - proof this scenario passes</summary>
33
+
</details>
34
+
35
+
36
+
# DEV
37
+
> This Environment is interchangable with PROD if the acceptance criteria can only be tested in DEV for example. If that is the case please name this section PROD (or any new environment)
38
+
39
+
<details>
40
+
<summary>Proof this feature/patch works in this environment</summary>
41
+
</details>
42
+
43
+
# AZURE
44
+
45
+
<details>
46
+
<summary>Proof this feature/patch works in this environment</summary>
47
+
</details>
48
+
49
+
# Interactive Analysis
50
+
51
+
<details>
52
+
<summary>Proof this feature/patch works in this environment</summary>
Copy file name to clipboardExpand all lines: README.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1634,6 +1634,39 @@ If you require more information on the files and folder listed, you can use the
1634
1634
- Virtual Name (the file or folder name)
1635
1635
- Storage Path
1636
1636
1637
+
**Output Format Options**
1638
+
1639
+
The `datasets ls` command supports different output formats using the `--output-format` option:
1640
+
1641
+
-**`stdout` (default)**: Displays results in the console with Rich formatting
1642
+
- Without `--details`: Simple list of file/folder names with color coding (blue underlined for folders)
1643
+
- With `--details`: Rich formatted table with all file information
1644
+
1645
+
-**`csv`**: Saves results to a CSV file
1646
+
- Without `--details`: CSV with two columns: "Name,Storage Path"
1647
+
- With `--details`: CSV with columns "Type, Owner, Size, Size (bytes), Last Updated, Virtual Name, Storage Path"
1648
+
1649
+
Examples:
1650
+
1651
+
```bash
1652
+
# Simple list to console (default)
1653
+
cloudos datasets ls Data --profile my_profile
1654
+
1655
+
# Detailed table in console
1656
+
cloudos datasets ls Data --details --profile my_profile
1657
+
1658
+
# Simple CSV output
1659
+
cloudos datasets ls Data --profile my_profile --output-format csv
1660
+
1661
+
# Detailed CSV output
1662
+
cloudos datasets ls Data --details --output-format csv --profile my_profile
1663
+
1664
+
# Custom output filename
1665
+
cloudos datasets ls Data --details --output-format csv --output-basename my_files --profile my_profile
1666
+
```
1667
+
1668
+
When using `--output-format csv`, you can optionally specify a custom base filename using `--output-basename`. If not provided, the filename will be auto-generated based on the path (e.g., `datasets_ls.csv`).
1669
+
1637
1670
#### Move Files
1638
1671
1639
1672
Relocate files and folders within the same project or across different projects. This is useful for reorganizing data and moving results to appropriate locations.
0 commit comments