我设置将文本文件从模块复制到 SharePoint 服务器目录
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Module Name="MyModule">
<File IgnoreIfAlreadyExists="TRUE" Path="MyModule\newFile.txt" Url="MyModule/newFile.txt" />
</Module>
</Elements>
之后,在 featureActivated 中,我将通过以下代码获取文件:
try
{
SPFile newFile = myWeb.GetFile(properties.Definition.RootDirectory + "\\MyModule\\newFile.txt");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
我得到了这个例外:“价值不在预期范围内”。我是怎么了?