Azure blob storage and writing to file system

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
I'm thinking about creating some providers for Azure blob storage. It's good to see that for images, there is an IPictureService interface to implement for this purpose.

Other than the uploading and storage of images, what other operations within nopCommerce write to the file system?

Is there any direct writing to the web.config or other files?
12 years ago
I think you should also check pdf files for invoices
12 years ago
nicolas.muniere wrote:
I think you should also check pdf files for invoices


Do the invoices actually have a file presence? I thought that they were generated on the fly and then served up with the response.
12 years ago
The code uses a file stream :
PdfWriter.GetInstance(doc, new FileStream(filePath, FileMode.Create));
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.