サブ フォルダーを含むドキュメント ライブラリからすべてのリスト アイテムを取得するために、クライアント側オブジェクト モデル アプローチ C# を使用しています。MSDN のドキュメントをチェックアウトしましたが、フィールド プロパティを取得できない理由、またはこれを正しく行っているかどうかについて行き詰まっています。
NetworkCredential credentials = System.Net.CredentialCache.DefaultNetworkCredentials;
ClientContext clientcontext = new ClientContext(Resources.defaultSPSite);
clientcontext.Credentials = credentials;
//Load Libraries from SharePoint
//Web site = clientcontext.Web;
clientcontext.Load(clientcontext.Web.Lists);
clientcontext.ExecuteQuery();
//List sharedDocumentsList = clientcontext.Web.Lists.GetByTitle("TestLDOCS");
//CamlQuery camlQuery = new CamlQuery();
//camlQuery.ViewXml = @"<View Scope='Recursive'><Query></Query></View>";
foreach (List list in clientcontext.Web.Lists)
{
clientcontext.Load(list);
clientcontext.ExecuteQuery();
//list.TemplateFeatureId.ToString().Equals("") &&
string baseType = list.BaseType.ToString();
string listTitle = list.Title.ToString();
if (list.BaseType.ToString().Equals("DocumentLibrary", StringComparison.InvariantCultureIgnoreCase) && list.Title.ToString().Equals("TestLDOCS", StringComparison.InvariantCultureIgnoreCase))
{
foreach (Folder subFolder in list.RootFolder.Folders)
{
foreach (File f in subFolder.Files)
{
Console.WriteLine((string) f.Title);
}
}
}
}
}
私が受け取っているエラーは、「foreach(File f in subFolder.Files)」コレクションが初期化されていない可能性があるというエラーです。CSOM を使用して、ドキュメント ライブラリ内のすべてのサブフォルダー内のすべてのドキュメントのフィールド値を取得する方法はありますか?
リスト項目 (listItem["fieldName"]) を使用してフィールド値を厳密に入力できることは知っています。代わりにこのルートを使用する必要がありますか?