Tagged Questions

4
votes
2answers
2k views

File permissions with FileSystemObject - CScript.exe says one thing, Classic ASP says another

I have a classic ASP page - written in JScript - that's using Scripting.FileSystemObject to save files to a network share - and it's not working. ("Permission denied") The ASP page is running under ...
2
votes
1answer
606 views

Alternative to Server.CreateObject

I am writing a navigation system in classic ASP (on Windows CE). I require a way to dynamically include navigation files based on the calling script. I have come up with the following code that ...
2
votes
2answers
2k views

Can't write file in classic asp

Ok, it's been a while since I've worked with classic asp so I'm a bit rusty. Here's my question. I'm trying to write a file to the file system using FSO. The code below is very simple. However, the ...
2
votes
2answers
647 views

ASP FileSystemObject collection cannot be accessed by index

Am I going mad? I cannot find a way to get hold of the first file in a folder with the FileSystemObject (classic ASP). With most collections you'd think the index 0 or 1 might work, but IIS says ...
1
vote
2answers
390 views

Classic ASP .CopyFile “Permission Denied” error on Windows Server 2008, IIS 7

We are upgrading our intranet web server from a Windows Server 2000, IIS 4 environment to Windows Server 2008, IIS 7 environment. As part of the upgrade, I'm modifying a classic ASP application to ...
1
vote
1answer
413 views

VBScript:FileSystemObject.Can i use GetFolder method with absolute url?

in ASP-vbscript, I can use the GetFolder method of FileSystemObject to get the contents inside a folder if i pass the location of the folder Set fso = CreateObject("Scripting.FileSystemObject") Set ...
1
vote
3answers
660 views

VBScript's CopyFile not working

I think it may have something to do with the external file but I am getting the error Path not found and don't know why. Code below. <% Dim fs set fs = ...
1
vote
3answers
810 views

Getting the size of a remote folder via classic ASP

I'm trying to something pretty simple but am having headaches with it. I'm pretty sure all I have here is a permissions issue I don't know how to solve but I could be wrong. Here is my scenario... I ...
1
vote
2answers
1k views

Classic ASP: Best way to read & write large (5mb+) files using FileSystemObject

All, I'm working on an application that allows authorized users to upload Excel spreadsheets to our server. Once they're uploaded, there's a classic ASP script that reads the data in the Excel ...
0
votes
2answers
77 views

Cannot delete a file using ASP DeleteFile method

I'm trying to delete an image file whenever a user clicks a link to delete it. I get no errors, and the error number is zero. However, the file is not deleted. I can save the photos file, but not ...
0
votes
1answer
96 views

HTTPS & FSO.copyfile

I have a legacy ASP application that uses FSO (Scripting.FileSystemObjec) to copy a file from the web box to a network share. Since we have upgraded the server to HTTPS, the file copy is slower. Can ...
0
votes
0answers
59 views

How can i use swedish characters in a local file path through asp classic?

I've got a server with a lot of files and folders containing swedish characters and i need to be able to write, read and use swedish chars in filenames and foldernames. So far i've only used the ...
0
votes
1answer
124 views

Scripting.FileSystemObject vs Server.Execute

which one is faster? (for static html page include)
0
votes
0answers
120 views

Scripting.FileSystemObject: empty file and infiting write loop

I'm trying to debug an issue our systems guys are seeing. Here are the symptoms: A file is created using the Scripting.FileSystemObject, but the contents are not written (the file is 0 bytes). There ...
0
votes
1answer
615 views

Delete a chosen line from a text file using ASP?

I have a loop that finds duplicate lines in a .ini file. I can happily find the duplicate lines, and write new lines to the file using FileSystemObject, however... I can't seem to find out how to ...
0
votes
1answer
337 views

Are there restricted characters in ADO varchars?

We have a simple file browser on our intranet, built using ASP/vbscript. The files are read by the script and added to an ADO Recordset (not connected to a database), so we can sort the contents ...