I have a ppt file and want to save it to my user folder inside the databricks dbfs system. This is what I have:
from pptx import Presentation
from pptx.util import Cm
import shutil
pptx.save(some_name + '.pptx')
Now, I found this command example but I am not sure if its going to work and how to change it to my specifications:
dbutils.fs.put("/FileStore/my-stuff/my-file.txt")
What does FileStore, and my-stuff stand for? Where do I specify my user name to map to my folder?