Open
Description
I'm working on porting an app from running directly on a web server to Azure App Services. As part of this, I need to move the filesystem access that my app does to using Azure Files (which is part of Azure Storage). This is part of package Azure.Storage.Files.Shares for those interested.
At the same time, I want to keep the file system access generic enough to work either locally or in Azure. System.IO.Abstractions is perfect for that purpose.
My question is- does a System.IO.Abstractions wrapper for Azure Files already exist? (I didn't find one on a cursory search) And, if not, does anyone else have interest in this? I'm considering implementing and releasing as a public package if there is interest in the community.