|
Microsoft® JScript Drive Property |
Language Reference Version 3 |
Returns the drive letter of the drive on which the specified file or folder resides. Read-only.
object.DriveThe object is always a File or Folder object.
The following code illustrates the use of the Drive property:function ShowFileAccessInfo(filespec) { var fs, f, s; fs = new ActiveXObject("Scripting.FileSystemObject"); f = fs.GetFile(filespec); s = f.Name + " on Drive " + f.Drive.toUpperCase() + "\n"; s += "Created: " + f.DateCreated + "\n"; s += "Last Accessed: " + f.DateLastAccessed + "\n"; s += "Last Modified: " + f.DateLastModified ; window.alert(s); }
© 1997 by Microsoft Corporation. All rights reserved.
See also:
| file: /Techref/inet/iis/jscript/htm/js269.htm, 2KB, , updated: 1997/9/30 04:44, local time: 2012/5/22 09:12,
38.107.179.232:LOG IN |
| ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.ecomorder.com/techref/inet/iis/jscript/htm/js269.htm"> Drive Property</A> |
| Did you find what you needed? |
|
Calculator 7-seg LED chars, port values, resistor color codes and common values, ohms law, wavelength / frequency, RMS and Peak, max value for x bits, etc... |
|
The Backwoods Guide to Computer Lingo |
.