JavaScript
  Home arrow JavaScript arrow Page 3 - Advanced JavaScript with Internet Explorer...
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
JAVASCRIPT

Advanced JavaScript with Internet Explorer: Working with Drives and More
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 1
    2006-03-28

    Table of Contents:
  • Advanced JavaScript with Internet Explorer: Working with Drives and More
  • A better approach to retrieving a list of drives using JavaScript
  • How to know the number of partitions of each physical drive using JavaScript
  • How to learn more information about each partition using JavaScript
  • How to list all folder/file information (including sub-folders) using JavaScript
  • How to list all folder information for a particular sub-folder using JavaScript

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Advanced JavaScript with Internet Explorer: Working with Drives and More - How to know the number of partitions of each physical drive using JavaScript


    (Page 3 of 6 )

    Now, let us try to develop a simple script (JavaScript) which shows the technique for retrieving the number of partitions of each drive on a web page. The entire code for the sample is as follows:

    <!DOCTYPE  HTML  PUBLIC  "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
          <head>
                <title></title>
                <meta  name="GENERATOR"  content="Microsoft Visual Studio .NET
    7.1">
                <meta  name="vs_targetSchema"
     content="http://schemas.microsoft.com/intellisense/ie5">
          <script  id=clientEventHandlersJS  language=javascript>
    <!--

    function Button1_onclick() {
          var locator = new ActiveXObject ("WbemScripting.SWbemLocator");
          var service = locator.ConnectServer(".");
          var properties = service.ExecQuery("SELECT * FROM Win32_DiskDrive");
          var e = new Enumerator (properties);
          document.write("<table border=1>");
          for (;!e.atEnd();e.moveNext ())
          {
                var p = e.item ();
                document.write("<tr>");
                document.write("<td>" + p.Caption + "</td>");
                document.write("<td>" + p.DeviceID + "</td>");
                document.write("<td>" + p.Partitions + "</td>");
                document.write("<td>" + p.Size + "</td>");
                document.write("</tr>");
          }
          document.write("</table>");
    }

    //-->
    </script>
    </head>
          <body>
                <INPUT  id="Button1"  type="button"  value="Button"
     name="Button1"  language=javascript  onclick="return Button1_onclick()">
          </body>
    </html>

    The above would automatically list all the physical drives along with their names, ids and number of partitions.  To retrieve physical drive information, I used a built-in class, “Win32_DiskDrive.”  The class internally has a lot of properties, methods and events.  But, in the above example we concentrated only on the properties “Caption,” “DeviceID,” “Partitions” and “Size” (related to the “Win32_DiskDrive” class).

    The “for” loop I used in the above code iterates for every physical drive present in the system and finally retrieves only the properties of that drive.

    More JavaScript Articles
    More By Jagadish Chaterjee


       · Hello guys, Can you believe that JavaScript can work with...
       · This is code for MSIE Only. Should'nt be relied upon in the real world with the...
       · That's because the non-IE browsers suck. Despite all the hype IE is far superior...
     

    JAVASCRIPT ARTICLES

    - Using Click Interceptions with a Database-Dr...
    - Using JavaScript Click Interceptions in an I...
    - Using Click Interceptions with JavaScript
    - QuickSort in Action
    - Quicksort
    - Using Mod_Security to Protect Your Server
    - Detecting and Countering Server Intrusions
    - Securing Your Web Server
    - Building a Secure Web Server
    - Protecting the Server
    - Book Review: Learning the Yahoo! User Interf...
    - Dynamically Generate a Selection List in a R...
    - Intergrate DWR into Your Java Web Application
    - Detect Browser Compatibility with the Reques...
    - Using the EXT JS Date Picker Widget






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway
    Stay green...Green IT