VBScript在服务器上创建目录
生活随笔
收集整理的這篇文章主要介紹了
VBScript在服务器上创建目录
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
最近用到的東西,mark一下吧。
CreateDir.asp
<% Function CreateDir(path)'文件夾名稱,文件夾路徑 Dim fso, msg Set fso = CreateObject("Scripting.FileSystemObject") '設置FSO文件If fso.FolderExists(path) Then '如果文件夾存在的話那么提示已有目錄信息msg = "exists." Else msg = "doesn't exist." Set f = fso.CreateFolder(path) '新建此目錄End If Response.write(msg) End Function '創(chuàng)建目錄 strfilename=Request("PcName") thisUploadDir=server.mappath(""&strfilename&"") '上傳文件目錄路徑 thisUploadDir=CreateDir(thisUploadDir) '設置上傳目錄名稱%>http://127.0.0.1/asp/createdir.asp?pcname=testdir???
?
總結
以上是生活随笔為你收集整理的VBScript在服务器上创建目录的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Outlook另类小技巧 批量处理图片大
- 下一篇: cannot open file mfc