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

修改文件名

时间:2014-06-27 08:44:05      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   class   http   tar   ext   color   

妙用ASP修改文件名称

比方说我现在有一个文件已存在,路径是‘d:\files\test.asp’,我想把它改名为new.asp,路径不变,应该怎么写?
如下:
Set fso = Server.CreateObject("Scripting.FileSystemObject") 
Set f = fso.GetFile("d:\files\test.asp")
f.name ="new.asp"
newname=f.name
response.write newname ‘显示为:new.asp

还有一方法:
Set fso = Server.CreateObject("Scripting.FileSystemObject") 
fso.movefile "d:\files\test.asp","d:\files\new.asp"

================================================================================

Name 属性        
描述

设置或返回指定文件或文件夹名。读/写属性。

语法

object.Name [= newname]

Name 属性有下列几部分:

部分 描述 
object 必需的。总是某个 File 或 Folder 对象的名字。 
newname 可选的。如果提供的话,newname 是指定的 object 的新名。


说明

下面的代码举例说明了 Name 属性的用法:

Sub ShowFileaccessInfo(filespec)
    Dim fs, f, s
    Set fs = CreateObject("Scripting.FileSystemObject")
    Set f = fs.GetFile(filespec)
    s = f.Name & " on Drive " & UCase(f.Drive) & vbCrLf
    s = s & "Created: " & f.DateCreated & vbCrLf
    s = s & "Last accessed: " & f.DateLastaccessed & vbCrLf
    s = s & "Last Modified: " & f.DateLastModified 
    MsgBox s, 0, "File access Info"
End Sub

修改文件名,布布扣,bubuko.com

修改文件名

标签:style   class   http   tar   ext   color   

原文地址:http://blog.csdn.net/sjian123/article/details/34863157

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