Hi Everyone,
I am trying to implement a way in Python to only read files that weren't loaded since the last run of my notebook. The way I am thinking of implementing this is to keep of the last time my notebook has finished in a database table. Next time my job runs, I would like to only load the net new files that were added to azure blob. So, I want to be able to read the create date or last modified date for that file for me to be able to do incremental loading.
My two questions are:
- Am I doing it the right way?
- Is it possible to get create date and/or modified date of an azure blob container using Python?