ASP CreateTextFile() - FileSystemObject This the tutorial/example asp script how to Create text file
ShotDev Focus:
- ASP & Create text file
Example
asp_filesystemobject_createtextfile.asp
<% Option Explicit %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Dim objFSO,objFolder
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
set objFolder = objFSO.CreateTextFile(Server.MapPath("MyFiles/NewFiles.txt"))
objFolder.WriteLine("Hello ShotDev.Com")
Response.write("File Created")
objFolder.Close()
Set objFolder = Nothing
Set objFSO = Nothing
%>
</body>
</html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_filesystemobject_createfolder.asp
Screenshot


