码迷,mamicode.com
首页 > 其他好文 > 详细

修改文档库中文件名称

时间:2014-12-09 15:12:34      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:style   ar   color   os   sp   strong   on   文件   bs   

/// <summary>        

/// An item was added.        

/// </summary>        

public override void ItemAdded(SPItemEventProperties properties)        

{            

  base.ItemAdded(properties);

      SPListItem item = properties.ListItem;            

  string fileName = "人员测评" + "-" + properties.UserDisplayName +  "-" + DateTime.Now.ToString("yyyyMM") + item.File.Name.Substring(item.File.Name.LastIndexOf(‘.‘));            

item.File.MoveTo(item.Url.Substring(0, item.Url.IndexOf(‘/‘) + 1) + fileName, true);        

}

修改文档库中文件名称

标签:style   ar   color   os   sp   strong   on   文件   bs   

原文地址:http://www.cnblogs.com/thankyou555/p/4153217.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!