WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Dos file handles

 
Goto page 1, 2, 3
   Home -> Windows Other -> MS DOS Apps RSS
Next:  write fault error writing device lpt1  
Author Message
kleefarr iol.ie>

External


Since: Aug 18, 2005
Posts: 29



(Msg. 1) Posted: Thu Mar 17, 2005 1:33 am
Post subject: Dos file handles
Archived from groups: microsoft>public>win95>msdosapps (more info?)

Could anyone please confirm the max number if file handles allowed in dos?

Is it files=255 or would the highfiles=? allow a larger number.

Kevin

--
http://www.smartgroups.com/pictures/openalbum.cfm?GID=2968098&AlbumID=5053641
http://www.kleefarr.juvio.com
http://www.tryitandsee.167aday.com
Back to top
Login to vote
MasterBlaster

External


Since: Jan 02, 2004
Posts: 83



(Msg. 2) Posted: Thu Mar 17, 2005 1:08 pm
Post subject: Re: Dos file handles [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"kleefarr iol.ie>" wrote

> Could anyone please confirm the max number if file handles allowed in dos?
>
> Is it files=255

As far as I know, that's the one.

> or would the highfiles=? allow a larger number.

Never heard of "highfiles".
Back to top
Login to vote
kleefarr iol.ie>

External


Since: Aug 18, 2005
Posts: 29



(Msg. 3) Posted: Thu Mar 17, 2005 1:08 pm
Post subject: Re: Dos file handles [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks.

"MasterBlaster" wrote:

>
> "kleefarr iol.ie>" wrote
>
> > Could anyone please confirm the max number if file handles allowed in dos?
> >
> > Is it files=255
>
> As far as I know, that's the one.
>
> > or would the highfiles=? allow a larger number.
>
> Never heard of "highfiles".
>
>
Back to top
Login to vote
Eric P.

External


Since: Jun 25, 2004
Posts: 12



(Msg. 4) Posted: Thu Mar 17, 2005 3:01 pm
Post subject: Re: Dos file handles [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Maybe it's confused with FILESHIGH

From: Using MS-Dos7 Commands
http://home7.inet.tele.dk/batfiles/msdos7/

<QUOTE>
Files/FilesHigh
Specifies the number of files that MS-DOS can access at one time.

The FILES and FILESHIGH commands can only be invoked from Config.sys.

Syntax:
FILES=x
FILESHIGH=x
x The number of files that can be accessed at one time. x can be from 8
to 255, with a default value of 30 (Win95) and 60 (Win98).


Notes:
By default, the line
fileshigh=30 (Win95) or
fileshigh=60 (Win98)
is used by Windows on startup. It is only necessary to include a
"fileshigh= " line in config.sys if an alternative value is required
and/or when working without Windows loaded ("pure" Dos mode).

In the days of Dos6 a value of 30 has been recommended as a good general
purpose figure, so 60 should be plenty for most situations. Some Dos
programs such as compilers and databases may require several hundred
files to be open at any time but in such cases the setup program will
likely introduce the required entry in config.sys.

The value set for FILES may not be the only determining factor in how
many files a program can have open at a time, and the design of the
programs being used may be a limiting factor.

Each FILE specified requires about 50 bytes of memory.
If the DOS command is used to manage the upper memory blocks (it usually
is), the default value for FILES are automatically
</QUOTE>

MasterBlaster wrote:
> "kleefarr iol.ie>" wrote
>>Could anyone please confirm the max number if file handles allowed in dos?
>>Is it files=255
> As far as I know, that's the one.
>>or would the highfiles=? allow a larger number.
> Never heard of "highfiles".
Back to top
Login to vote
kleefarr iol.ie>

External


Since: Aug 18, 2005
Posts: 29



(Msg. 5) Posted: Thu Mar 17, 2005 3:01 pm
Post subject: Re: Dos file handles [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks. I did mean fileshigh. But according to the web site you linked
there's no difference between the two. So 255 it is I suppose.
Course of action..

DOS prompt then edit C:\config.sys ammend files= to files=255. Is what I
have to do right?

Kevin

"Eric P." wrote:

> Maybe it's confused with FILESHIGH
>
> From: Using MS-Dos7 Commands
> http://home7.inet.tele.dk/batfiles/msdos7/
>
> <QUOTE>
> Files/FilesHigh
> Specifies the number of files that MS-DOS can access at one time.
>
> The FILES and FILESHIGH commands can only be invoked from Config.sys.
>
> Syntax:
> FILES=x
> FILESHIGH=x
> x The number of files that can be accessed at one time. x can be from 8
> to 255, with a default value of 30 (Win95) and 60 (Win98).
>
>
> Notes:
> By default, the line
> fileshigh=30 (Win95) or
> fileshigh=60 (Win98)
> is used by Windows on startup. It is only necessary to include a
> "fileshigh= " line in config.sys if an alternative value is required
> and/or when working without Windows loaded ("pure" Dos mode).
>
> In the days of Dos6 a value of 30 has been recommended as a good general
> purpose figure, so 60 should be plenty for most situations. Some Dos
> programs such as compilers and databases may require several hundred
> files to be open at any time but in such cases the setup program will
> likely introduce the required entry in config.sys.
>
> The value set for FILES may not be the only determining factor in how
> many files a program can have open at a time, and the design of the
> programs being used may be a limiting factor.
>
> Each FILE specified requires about 50 bytes of memory.
> If the DOS command is used to manage the upper memory blocks (it usually
> is), the default value for FILES are automatically
> </QUOTE>
>
> MasterBlaster wrote:
> > "kleefarr iol.ie>" wrote
> >>Could anyone please confirm the max number if file handles allowed in dos?
> >>Is it files=255
> > As far as I know, that's the one.
> >>or would the highfiles=? allow a larger number.
> > Never heard of "highfiles".
>
Back to top
Login to vote
Eric P.

External


Since: Jun 25, 2004
Posts: 12



(Msg. 6) Posted: Thu Mar 17, 2005 8:42 pm
Post subject: Re: Dos file handles [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

There is indeed no difference in the max number of file handles.

The difference is when FILESHIGH is available and used in the Dos
version that is running it uses upper iso precious conventional memory.

kleefarr iol.ie> <kleefarr wrote:
> Thanks. I did mean fileshigh. But according to the web site you linked
> there's no difference between the two. So 255 it is I suppose.
Back to top
Login to vote
kleefarr iol.ie>

External


Since: Aug 18, 2005
Posts: 29



(Msg. 7) Posted: Thu Mar 17, 2005 8:42 pm
Post subject: Re: Dos file handles [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Great.
Do I need to use the FILESHIGH label to make win 95 always boot to 255 tags.
Or once changed to FILES=255 will it always boot to 255?

Thats the last question, honest.

Kevin

"Eric P." wrote:

> There is indeed no difference in the max number of file handles.
>
> The difference is when FILESHIGH is available and used in the Dos
> version that is running it uses upper iso precious conventional memory.
>
> kleefarr iol.ie> <kleefarr wrote:
> > Thanks. I did mean fileshigh. But according to the web site you linked
> > there's no difference between the two. So 255 it is I suppose.
>
Back to top
Login to vote
Jeff Richards

External


Since: Mar 14, 2004
Posts: 2490



(Msg. 8) Posted: Fri Mar 18, 2005 8:51 pm
Post subject: Re: Dos file handles [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

You can use either command to make 255 file handles available. The version
you use simply determines whether the space for the handles is allocated out
of conventional memory or out of extended memory.

Why do you need this many file handles?
--
Jeff Richards
MS MVP (Windows - Shell/User)
"kleefarr iol.ie>" <kleefarr<at> wrote in message
news:570F3AC9-5AF7-4BFD-A337-AA79CF5AD039@microsoft.com...
> Great.
> Do I need to use the FILESHIGH label to make win 95 always boot to 255
> tags.
> Or once changed to FILES=255 will it always boot to 255?
>
> Thats the last question, honest.
Back to top
Login to vote
Display posts from previous:   
       Home -> Windows Other -> MS DOS Apps All times are: Eastern Time (US & Canada) (change)
Goto page 1, 2, 3
Page 1 of 3

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
  Windows Other
 Office
 Office Other
 Security
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET |
  • IT Support