Azure网站将文件写入网络驱动器

时间:2014-08-14 16:19:57

标签: c# .net web-services azure .net-4.5

我有一个服务,我目前在我们的本地IIS机器上运行,它将使用以下代码将文件写入指定的目录:

//Creating the filepath that is needed
string FilePath = FolderPath.Replace("'", "") 
                + FileName.Replace("'", "").Replace(" ", "")
                  .ToString();

//Writing the file to the correct path
File.WriteAllBytes(FilePath, fileTransferDump.FileBinary);

当我切换到Azure网站时,如何让系统写入我想写入的文件路径。

基本上我如何使Azure网站写入网络共享。这只是一个普通的Azure网站。

1 个答案:

答案 0 :(得分:0)

Azure网站无法使用传统的Windows文件共享写入机外资源。您最好的选择是将任何此逻辑包装在自定义库中,该库将这些文件写入重定向到Azure Blob存储。