Reading feather files in Power BI
Now that we know how to set up our local virtual environment and install the required packages, we can start reading the feather file in Power BI. First act...
It’ll show you exactly that, a tree of all the subfolders. If you also want to see the filenames in those folders you can add the extra parameter like this:
tree /f
This would generate the following for the same subfolder as above:
Now if you want to save this to a file for later use, or to search for something specific you can do that via the following command:
tree /f > treedata.txt
With as output:
That looks rather odd so if you want to beautify that you can also add the /a parameter like:
tree /f /a > treedata.txt
And now it becomes
Kris.
Leave a Comment