Use Word to Search for Files

2016-02-19 09:26 5 1 收藏

岁数大了,QQ也不闪了,微信也不响了,电话也不来了,但是图老师依旧坚持为大家推荐最精彩的内容,下面为大家精心准备的Use Word to Search for Files,希望大家看完后能赶快学习起来。

【 tulaoshi.com - Web开发 】

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


来源:http://www.tulaoshi.com/n/20160219/1590767.html

延伸阅读
标签: Web开发
Returns the name and product code of binary information  (such as bitmaps, icons, executable files, and so on) used  by a Windows Installer application. This script requires both  ...
The purpose of this document is to provide a few OS commands for UNIX  operating systems to gather information about Physical Memory (RAM),   swap memory,CPU usage and idle percentage, whether lots of processes  are in the process run queue and whether too much paging and swapping&n...
标签: 电脑入门
1、首先我们打开注册表,然后在注册表中查找Windows Search文件。 2、在注册表中,我们点击菜单中编辑,然后点击查找,下面会找到一个"REG_SZ"类型的值,是:UninstallString,打开它并将里面的字符串复制到运行中去执行就可以顺利删除这个软件了。 但是这个方法图老师小编没有在注册表中找到该文件,试试另外一种方法。 在Window...
标签: Web开发
One of the greatest problems when trying to optimize an ASP.NET page to be more search engine friendly is the view state hidden field. Most search engines give more score to the content of the firsts thousands of bytes of the document so if your first 2 KB are view state junk your pages are penalized. So the goal ...
1.故障现象 通过 SQL Server 服务管理器 启动出错提示如下: 通过 服务管理器 启动出错提示如下: 2.原因分析 安照《五种常见Windows服务启动问题的排错方法》这篇文章的方案思路进行排除解决。 3.解决办法 对于本次出现的错误,在查看正常系统服务注册表文件时发现少几个项值。并检查一些数值数据是否被篡改如下: BEG...

经验教程

710

收藏

52
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部