Link to home
Start Free TrialLog in
Avatar of Mike Caldwell
Mike CaldwellFlag for United States of America

asked on

Maximum file size or entries to append to a file with VBScript?

Can't find here and Mr. Google doesn't respond either, so sorry if this has been answered; it seems pretty basic.

I have a VBScript that is appending to a file to create a log of PDFs being processed by an OCR system.  Ran fine for a couple of days, now I get a "Permission denied" error when I hit the "OpenTextFile" instruction.  The file has about 24K lines, and is just under 1MB in size.  The same script is running on another machine without error, but has 22K lines and is about 800K in size.  So, is there a file size or number of records maximum problem?  If so, is there a different way to open the file?

I need the log to run for several days as I look for an unrelated system problem.  The contents of the file will be copied into a spreadsheet as CSV data for analysis.
Avatar of Gary
Gary
Flag of Ireland image

Is the file getting locked in an open process somewhere else, or maybe your script is not closing it.
As you are able to write to the file normally then Permission Denied indicates it is locked.
Avatar of Mike Caldwell

ASKER

I kill all of the VBScripts I have running, then try to run this one.  It does not create the file, I created it a few days ago, empty.  So it ran for a couple of days, thus the 24K records and 1MB file size.  I copied the file off, and started over with an empty file, and it is running and appending just fine.
Confused by what you are saying
What type of file is it - not that it should matter.
SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
.TXT file.  If it were in use by another process I wouldn't have the problem after a reset.  When I deleted all the records the problem went away.
Don't know then, can you post your code?
Not clear from your comments but where you able to open the file manually?
I could open the file, but I could not save it.  Let me look at posting a subset of the code; some of it is confidential to a client.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
So the problem was?