Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Get the Windows main directories (without any API call)
[ All Languages » VB »  Windows]

Total Hit ( 3160)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


The usual way to determine the Windows' main directory is based on the GetWindowsDirectory API function, which requires that you set up a buffer for the result, and then extract the null-terminated result. However, there is a much simpler approach, that works equally well under Windows 95, 98 and NT:

Click here to copy the following block
' "windir" can be lower case, upper case or mixed case
windowsDirectory = Environ$("windir")

You can expand on this tip to retrieve the name of the SYSTEM directory, without using any API call. In fact, you have to take into account that the this directory is named SYSTEM under Windows 95/98 and SYSTEM32 under Windows NT (and 2000). If you also notice that the OS environment variable exists only in Windows NT (and 2000) you can determine the System directory with just one line of code:

Click here to copy the following block
systemDirectory = Environ$("windir") & IIf(Len(Environ$("OS")), "\SYSTEM32", _
  "\SYSTEM")


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.