Azure Functions临时存储 [英] Azure Functions Temp storage

查看:104
本文介绍了Azure Functions临时存储的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试将文件保存到Azure Functions目录(D:\home\data\temp\response.pdf)中的Temp存储时,出现以下错误.为什么我不能写这个目录?

When I try to save a file to the Temp storage in Azure Functions directory (D:\home\data\temp\response.pdf), I get the following error. Why can't I write to this directory?

mscorlib: Exception has been thrown by the target of an invocation. System: An exception occurred during a WebClient request. mscorlib: ***Could not find a part of the path 'D:\home\data\temp\response.pdf'.***
2017-09-19T07:05:24.353 Function completed (Failure, Id=3aa4b740-ba8a-465c-ad7c-75b38fa2a472, Duration=334ms)
2017-09-19T07:06:31  No new trace in the past 1 min(s).

推荐答案

我建议使用System.IO.Path.GetTempPath(),因为这将始终为您提供任何给定系统的有效路径.

I recommend using System.IO.Path.GetTempPath() as this will always give you a valid path for any given system.

此外,对于给定的实例,函数可能会同时执行多次,因此最好确保每次执行都有唯一的路径.这是一个简单的示例:

Additionally, functions may execute multiple times simultaneously for a given instance, so it's best to ensure you have a unique path for each execution. Here's a simple example:

var tempPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());

这篇关于Azure Functions临时存储的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆