ASP经典代码,文件夹重命名代码学习
黑客防线网安网讯:C/C++ Code复制内容到剪贴板 龙虎鹰师网安ASP教程网|http://www.rongsen.com.cn
C/C++ Code复制内容到剪贴板
- <%
-
- Name1="原文件名"
- Name2="目标文件名"
-
- if Name1<>"" and Name2<>"" then
-
- Sub RenameFolder(ByVal strFolderPath, ByVal strNewName)
-
- Dim objFileSystem
- Set objFileSystem=Server.CreateObject("Scripting.FileSystemObject")
-
- ' 如果路径不包含冒号, 则认为 strFolderPath 是虚拟路径.
- ' 故调用 Server.MapPath() 方法将此路径转为绝对路径
- If Instr(1,strFolderPath,":")=-1 Then
- strFolderPath=Server.MapPath(strFolderPath)
- End If
-
- Dim objFolder
- Set objFolder=objFileSystem.GetFolder(strFolderPath)
- objFolder.Name=strNewName
-
- Set objFolder=nothing
- Set objFileSystem=nothing
-
- End Sub
-
- RenameFolder Server.MapPath(Name1),Name2
- response.write "已经成功地把 "+Name1+" 更名为 "+Name2+" !"
-
- end if
-
- %>
网站维护教程更新时间:2013-03-18 16:17:33 【
打印此页】 【
关闭】