Hi guys,
I've been having difficulty with creating and deleting a file through ASP and I wondered if anyone here could help guide me.
Here's my code so far
Code:
Dim tempFileName
tempFileName = "joy.txt"
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.createtextfile(tempFileName)
Set objFSO = Nothing
I don't get any errors with this but I don't get any file!
I'm running this file from an internal server on our network, that's mapped to 'MY' P: although I think the file is held on the 'SERVERS' C:, when I run a search for the file I can't find it anywhere, it's just not getting created I guess. Has anyone come across this before?
Any help would be appreciated.
Blaise.