您的位置:首页 > 其它

FCKeditor 上传图片自动重命名

2008-04-15 11:50 323 查看
FCKeditor 的文件上传默认是不改名的,本地的文件名是什么,上传后保留原来的文件名;如果存在同名文件,则会被自动在文件名后面加 (n) 来标识。

FCKeditor For ASP.NET 的上传部分被编译到 DLL 文件里面了,所以只能通过修改源代码,再重新编译后方能使用。

使用:FCKeditor.Net_2.5.zip,asp.net 2.0版

找到项目中的FileBrowser/FileWorkerBase.cs


while (true)




...{


string sFilePath = System.IO.Path.Combine(sServerDir, sFileName);




if (System.IO.File.Exists(sFilePath))




...{


iCounter++;


sFileName = System.IO.Path.GetFileNameWithoutExtension(oFile.FileName) + "(" + iCounter + ")." + sExtension;




iErrorNumber = 201;


}


else




...{


oFile.SaveAs(sFilePath);


break;


}


}

修改后的代码变成:


while (true)




...{


sFileName = DateTime.Now.ToString("yyyymmddhhmmss", System.Globalization.DateTimeFormatInfo.InvariantInfo) + "." + sExtension;//以时间命名文件




string sFilePath = System.IO.Path.Combine(sServerDir, sFileName);




oFile.SaveAs(sFilePath);


break;


}

重新生成解决方案。在网站项目中删除旧的FredCK.FCKeditorV2.dll,再添加新的引用,就OK了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: