Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Items in the My Music FolderContent of List Items in the My Music Folder.jsMD5 Hash: 0D8DF100A407496FF81718B2771DD2A7 |
||
// description: reports the path to the my music folder, and then lists any items found in that folder.
var my_music = 0xd; var objshell = new ActiveXObject("shell.application"); var objfolder = objshell.namespace(my_music); var objfolderitem = objfolder.self; WScript.Echo(objfolderitem.path); var colitems = objfolder.items(); var myJS_Enumerator_1 = new Enumerator(colitems); for (;!myJS_Enumerator_1.atEnd();myJS_Enumerator_1.moveNext()) { objitem = myJS_Enumerator_1.item(); WScript.Echo(objitem.name); } | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |