System.NotSuportedException:不支持给定路径的格式

时间:2018-10-18 21:06:47

标签: c#

我的服务器上出现此异常-

string fullnamepath = @"https://cental222.intra.abc.com/gbs/TestArea/Destination/SUP000001
    /20050205-01-0005-001/bot.pdf";
    Aspose.pdf.Document doc = new Aspose.pdf.Document(fullnamepath);//This line gives error
System.NotSuportedException : The given path's format is not supported

我什至尝试了Path.Combine(Filepath,filename); //它也给出相同的错误

我想念什么?

1 个答案:

答案 0 :(得分:0)

您需要下载文件,因为您的程序无法访问URL上的文件,因此您需要将其下载到您自己的计算机上,然后指定相对于您自己的计算机的路径,

    @"...path to file/bot.pdf

编辑#1 您的程序假定您上面给出的路径在系统上存在,而实际上在网上。