Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Play with JavaScript : Get Details of Client Drive list
WhatsApp
Gaurav Kumar Arora
Mar 27
2015
2.9
k
0
1
The following Code snippet talks about How to obtain listing of Client System's Drive
<HTML>
<HEAD>
<SCRIPT language=JavaScript>
//Following function returns the drive list from client system
function
getClientDrives() {
var
objfs, s, n, e, x;
objfs =
new
ActiveXObject(
"Scripting.FileSystemObject"
);
e =
new
Enumerator(objfs.Drives);
s =
""
;
do
{
x = e.item();
s = s + x.DriveLetter;
s +=
": "
;
if
(x.DriveType == 3) n = x.ShareName;
else
if
(x.IsReady) n = x.VolumeName;
else
n =
"<font color=red>[Other Drive-not intialized]</font>"
;
s += n +
"<br>"
;
e.moveNext();
}
while
(!e.atEnd());
return
(s);
}
</SCRIPT>
</HEAD>
<BODY>
<P>
<h1>The following is the list of available drives on Client system:</h1>
<SCRIPT language=JavaScript> document.write(getClientDrives());</SCRIPT>
</P>
</BODY>
</HTML>
Create a new file with above code and run on a browser.
JavaScript
Client Drive list
Up Next
Play with JavaScript : Get Details of Client Drive list