0
C# managed CSOM을 사용하여 SharePoint 2010의 문서 라이브러리에서 파일 크기 정보를 가져와야합니다. 어떤 몸이라도 힌트를 주거나 샘플 코드를 공유 할 수 있습니까?SharePoint 2010의 CSOM을 사용하여 파일 크기 가져 오기
C# managed CSOM을 사용하여 SharePoint 2010의 문서 라이브러리에서 파일 크기 정보를 가져와야합니다. 어떤 몸이라도 힌트를 주거나 샘플 코드를 공유 할 수 있습니까?SharePoint 2010의 CSOM을 사용하여 파일 크기 가져 오기
다음 코드는 도움이된다면 알려주세요
using (ClientContext oContext = new ClientContext("siteurl"))
{
oContext.Credentials = new NetworkCredential("LoginId", "pwd", "domain");
List oList = oContext.Web.Lists.GetByTitle("DocLib");
CamlQuery oQuery = new CamlQuery();
ListItemCollection collListItem = oList.GetItems(oQuery);
oContext.Load(collListItem);
oContext.ExecuteQuery();
foreach (ListItem oListItem in collListItem)
{
oListItem["File_x0020_Size"]
}
}
LIB 문서에있는 파일의 크기를 가져옵니다.
솔루션이 도움이 되었습니까? –