文件移除后缀名
2015-03-24 16:59:42 访问(1826) 赞(0) 踩(0)
/// <summary>
/// 文件移除后缀名
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public string FileRemoveExtension(string str)
{
if (str == null)
return "";
int idx = str.LastIndexOf('.');
if (idx != -1)
return str.Substring(0, idx);
return str;
}
上一条:
下一条:
相关评论
发表评论