Lou Elston
Newcomer
- Joined
- Oct 21, 2003
- Messages
- 23
I have a VB net 2003 application that does a shell cmd of 'dir' on one system, to an output file. That output file is then looped thru to create the same dir and file structure on another system, using System.IO.File.Create(FileToCreate) and System.IO.Directory.CreateDirectory(FileToCreate) commands.
I keep getting the error 'Not enough quota is available to process this command", on an NT 4 system.
Without modifying the virtual memory of the system that I am running on, (because this application might be used on any system besides just my test system), thru the control pannel and the quota tab on the disk, (actually the quota tab does not exist on a nt 4 system)...if there anything that I can do inside my program?
After every create, should I do some kind of wait, (what command to use to do this), to possibly allow the system to flush the pages itself, before I do the next create?
By putting the creates in a called sub, (instead of within the read loop), will this clear the pages?
Anything else...???
Thanks
Lou
I keep getting the error 'Not enough quota is available to process this command", on an NT 4 system.
Without modifying the virtual memory of the system that I am running on, (because this application might be used on any system besides just my test system), thru the control pannel and the quota tab on the disk, (actually the quota tab does not exist on a nt 4 system)...if there anything that I can do inside my program?
After every create, should I do some kind of wait, (what command to use to do this), to possibly allow the system to flush the pages itself, before I do the next create?
By putting the creates in a called sub, (instead of within the read loop), will this clear the pages?
Anything else...???
Thanks
Lou