Heim  >  Artikel  >  Web-Frontend  >  Use Word to Search for Files_javascript技巧

Use Word to Search for Files_javascript技巧

WBOY
WBOYOriginal
2016-05-16 19:12:26865Durchsuche

Demonstration script that uses Microsoft Word to locate all the 
.mp3 files stored on drive C of the local computer

复制代码 代码如下:

Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Add()

objWord.FileSearch.FileName = "*.mp3"
objWord.FileSearch.LookIn = "C:\"
objWord.FileSearch.SearchSubfolders = True
objWord.FileSearch.Execute

For Each objFile in objWord.FileSearch.FoundFiles
    Wscript.Echo objFile
Next

objWord.Quit


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn