Hello @Anurag Shelar ,
Microsoft supports a Blob storage module on Azure IoT edge.
This module has two main capabilities:
- providing an Azure-Blob-storage-account-like API for other modules so files can be stored locally on the edge
- files/blobs which are stored locally by the Blob module can be synced with a storage account in the cloud
An example of using this module is seen here.
It seems you are looking for a way to send images from a folder to the cloud.
The Microsoft Blob storage container is not checking folders itself. you need to provide it with the files you want to sync to Azure using that API.
For this to happen, you should implement a custom 'file system watcher' module.