我尝试打开这样的文件
fromServerURL = http://mysite.com/sites/CM
, 没关系。
但是当我传递像这样的值时它给了我错误
fromServerURL = http://mySite.com/
SPFile file = oWebsiteFrom.GetFile(fromServerURL + "/" + fromPath + "/" + fileName);
我尝试测试它并查看那些。
long length = file .Length; - > it gives me the correct length
byte[] a= file .OpenBinary(); - > it gave me the error
file.Item is also null.
我找到了这个链接来解决这个问题,但是当我不知道确切的文件夹结构时,它适合我的情况。