首页 相关文章 ASP中FSO的神奇功能 - 用FSO进行内容管理

ASP中FSO的神奇功能 - 用FSO进行内容管理




   到此,你对FSO可能已经有了很好的体会。让我们再深入研究一步,来解决更复杂的难题。

   首先,你可能希望对文件改名。为了跟踪所有的文档,你将要重新命名它们以便唯一,这样就可以被系统容易地区
别。很不幸,FSO不允许简单的文件改名操作,所以我们不得不修改一下。

< %
' create the fso object
set fso = Server.Createobject("Scripting.FileSystemObject")
path = "c: emp est.txt"
strDate = Replace(Date(), "/", "")
strDir = "c:inetpubwwwrootarticles" & strDate
strNewFileName = Hour(Now) & "_" & Minute(Now) & "_" &
second(Now) & ".html"

' open the old file
set file = fso.opentextfile(path, 1) < -- For reading
strT...[ 查看全文 ]

2016-01-29 标签:

ASP中FSO的神奇功能 - 用FSO进行内容管理的相关文章

手机页面
收藏网站 回到头部