我是Azure Functions的新手,我试图发现它的一些功能。
所以我创建了函数blob触发器,在project.json
中添加了OpenXML sdk的引用"frameworks": {
"net46":{
"dependencies": {
"WindowsAzure.Storage": "7.0.0" ,
"Open-XML-SDK" : "2.7.2",
"DocumentFormat.OpenXml" : "2.8.1"
在run.csx中我添加了下一个代码
using System;
using System.IO;
using Microsoft.Azure;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Blob;
using DocumentFormat.OpenXml.Presentation;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml;
public static void Run (Stream myBlob, string name, TraceWriter log)
{
// *While we upload a blob, function start to execute*
StreamReader reader = new StreamReader(myBlob);
string S = reader.ReadToEnd();
int numberofSlides = CountSlides(S);
log.Info($"Number of slides = {numberofSlides}");
}
// *here, using XML sdk we open our presentation without using Office*
public static int CountSlides(string presentationFile)
{
using (PresentationDocument presentationDocument =PresentationDocument.Open(presentationFile, false))
{
return CountSlides(presentationDocument);
}
}
public static int CountSlides(PresentationDocument presentationDocument)
{
if (presentationDocument == null)
{
throw new ArgumentNullException("presentationDocument");
}
int slidesCount = 0;
PresentationPart presentationPart = presentationDocument.PresentationPart;
if (presentationPart != null)
{
slidesCount = presentationPart.SlideParts.Count();
}
return slidesCount;
}
问题是当我上传.pptx时,我的日志错误
执行函数时出现异常:Functions.BlobTriggerCSharp1。 mscorlib:调用目标抛出了异常。 DocumentFormat.OpenXml:找不到文档。
我使用Microsoft Azure Storage Explorer上传文件.pptx,我无法理解为什么会出错。
答案 0 :(得分:1)
您正在使用following method:
public static PresentationDocument Open(
string path,
bool isEditable
)
它接受的第一个参数是path
,但你传递了文件内容。它试图找到这个奇怪的文件路径并抛出异常。
尝试使用Stream overload。