| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 457 人关注过本帖
标题:我上传的文件为什么不自己变成日期的文件名
取消只看楼主 加入收藏
d778
Rank: 1
等 级:新手上路
帖 子:257
专家分:0
注 册:2006-1-10
收藏
 问题点数:0 回复次数:0 
我上传的文件为什么不自己变成日期的文件名
我比如上传文件123.RAR 上传到服务器后就为 up/123.rar 怎么样才能让他生成 UP/20070533.RAR 呢?生成以后 在下载的文章内又能识别出去 这个UP/20070533.RAR的完整下载地址



下面 是上传文件的代码!


<%OPTION EXPLICIT%>
<%Server.ScriptTimeOut=5000%>
<!--#include file="config.asp"-->
<!--#include FILE="upload.inc"-->
<head>
<link href="iknow.css" rel="stylesheet" type="text/css">
</head>

<body topmargin="0" leftmargin="0">
<%
if gx=1 then
if session("person")="" then
response.write"<script>alert('对不起,您未登录!');history.back();</script>"
end if
dim upload,file,formName,formPath,iCount,fname,ffname,zj
set upload=new upload_5xsoft ''建立上传对象
if upload.form("filepath")="" then ''得到上传目录
HtmEnd "请输入要上传至的目录!"
set upload=nothing
response.end
else
formPath=upload.form("filepath")
''在目录后加(/)
if right(formPath,1)<>"/" then formPath=formPath&"/"
end if
iCount=0
for each formName in upload.objForm ''列出所有form数据
next
for each formName in upload.objFile ''列出所有上传了的文件
set file=upload.file(formName) ''生成一个文件对象
if file.FileSize>5512000 then
response.write"<script>alert('对不起,文件超过5M!');history.back();</script>"
response.end
end if
if right(file.FileName,3)<>"rar" and right(file.FileName,3)<>"zip" and right(file.FileName,3)<>"txt" and right(file.FileName,3)<>"doc" and right(file.FileName,3)<>"xls" then
response.write"<script>alert('对不起,您上传的文件类型是不允许的!');history.back();</script>"
response.end
end if
if file.FileSize>0 then ''如果 FileSize > 0 说明有文件数据
file.SaveAs Server.mappath(formPath&file.FileName) ''保存文件
fname=formPath&File.FileName
ffname=File.FileName
zj=file.FileSize
iCount=iCount+1
end if
set file=nothing
next
set upload=nothing ''删除此对象
Htmend iCount&""
sub HtmEnd(Msg)
set upload=nothing
response.write " 文件上传成功!<script>parent.document.ftiwen.fname.value='"&fname&"';</script><script>parent.document.ftiwen.zj.value='"&zj&"';</script><script>parent.document.ftiwen.ffname.value='"&ffname&"';</script>"
response.end
end sub
else
Response.Write ("<script>alert('对不起,共享资料功能未启用!');history.back();</script>")
Response.end
end if
%>

搜索更多相关主题的帖子: 文件名 
2007-05-14 16:11
快速回复:我上传的文件为什么不自己变成日期的文件名
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016282 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved