错误:System.Reflection.TargetInvocationException:调用的目标已引发异常。---> System.Net.WebException:WebClient 请求期间发生异常。---> System.IO.PathTooLongException:指定的路径、文件名或两者都太长。完全限定的文件名必须少于 260 个字符,目录名必须少于 248 个字符。
我正在使用此代码;
public void Main()
{
System.Net.WebClient myWebClient = new System.Net.WebClient();
myWebClient.DownloadFile(Dts.Variables[0].Value.ToString(),
Dts.Variable[1].Value.ToString());
Dts.TaskResult = (int)ScriptResults.Success;
}
在哪里:
Dts.Variables[0].Value.ToString() == https://secure.f-prot.com/keyportal/cgi-bin/keyportalorder.pl?u=l&p=ooetcetcd&product_id=1&number_of_u=3&type=1&length=a&partner_id=2932&order_ref=4&account_reference_name=audney&account_reference_value=margaretculclagers%sbcglobal.net
Dts.Variables[1].Value.ToString() == C:\Audiney_API_File\keyportal_accountinfo.pl.xml
请帮助我。