Can't write file in classic asp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T19:15:48Z http://stackoverflow.com/feeds/question/898188 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/898188/cant-write-file-in-classic-asp 1 Can't write file in classic asp asp316 2009-05-22T14:37:19Z 2009-05-22T15:04:27Z <p>Ok, it's been a while since I've worked with classic asp so I'm a bit rusty. Here's my question.</p> <p>I'm trying to write a file to the file system using FSO. The code below is very simple. However, the file is not appearing and no errors are appearing. I know it's running the code because I can add response.writes before and after this snippet and they both appear in the output. However, no file is created, no error is thrown. I've even changed it so it's a bogus path to force an error. No dice. I added everyone to have read and write on the directory permissions. Still the same.</p> <p>Ideas?</p> <p>Here's my code:</p> <pre><code>Dim objFSO Set objFSO = Server.CreateObject("Scripting.FileSystemObject") 'Open the text file Dim objTextStream Set objTextStream = objFSO.OpenTextFile("d:\test.txt", True) 'Display the contents of the text file objTextStream.WriteLine "howdy" 'Close the file and clean up objTextStream.Close Set objTextStream = Nothing Set objFSO = Nothing </code></pre> http://stackoverflow.com/questions/898188/cant-write-file-in-classic-asp/898221#898221 1 Answer by Jason Heine for Can't write file in classic asp Jason Heine 2009-05-22T14:42:28Z 2009-05-22T14:42:28Z <p>Try this:</p> <pre><code>&lt;% if Append = true then iMode = 8 else iMode = 2 end if set oFs = server.createobject("Scripting.FileSystemObject") set oTextFile = oFs.OpenTextFile("C:\wwwroot\Test.txt", iMode, True) oTextFile.Write "Test Content" oTextFile.Close set oTextFile = nothing set oFS = nothing %&gt; </code></pre> <p>I tried this locally, after setting the permissions on my directory and it worked.</p> <p>You can get the original source from here: <a href="http://www.freevbcode.com/ShowCode.Asp?ID=89" rel="nofollow">http://www.freevbcode.com/ShowCode.Asp?ID=89</a></p> http://stackoverflow.com/questions/898188/cant-write-file-in-classic-asp/898353#898353 2 Answer by Guffa for Can't write file in classic asp Guffa 2009-05-22T15:04:27Z 2009-05-22T15:04:27Z <p>The only possible reason that the code would not produce an error message, is that you have this in your page:</p> <pre><code>On Error Resume Next </code></pre> <p>That's bad, for the reason that you have just seen. It just silently ignores any error messages, and leaves you without a clue to why it's not working as expected.</p> <p>(It should only be used for isolated parts of the code where you anticipate an error, and actually check for an error condition after each operation.)</p> <p>Remove that from your page, and the error message that you probably get is that the parameters are invalid for the call on this line:</p> <pre><code>Set objTextStream = objFSO.OpenTextFile("d:\test.txt", True) </code></pre> <p>You have forgotten the second parameter, which is the I/O mode. You should use the value 1 for writing:</p> <pre><code>Set objTextStream = objFSO.OpenTextFile("d:\test.txt", 1, True) </code></pre> <p>Alternatively, you can use the <code>CreateTextFile</code> method instead:</p> <pre><code>Set objTextStream = objFSO.CreateTextFile("d:\test.txt", True) </code></pre>