- /*
- 名称:文本内容变大写.JS
- 说明:拖放文本文件到本JS文件图标上,会将原文件中的小写字母换成大写。
- 支持ANSI编码格式(其他会有一些错误)。
- 参考:不记得了。
- 更新:暂无。
- 缺点:不支持 UNICODE 编码格式文本。
- */
- var wsh = new ActiveXObject("Shell.Application");
- fso = new ActiveXObject("scripting.filesystemobject");
- pth = WScript.Arguments(0);
- txt = fso.openTextFile(pth);
- txtContant = txt.readAll().toUpperCase();
- txt.close();
- txt = fso.openTextFile(pth,2,true);
- txt.Write(txtContant);
- txt.Close();
- pop = new ActiveXObject("WScript.shell");
- pop.popup("完成!",3,"小写转大写提示");
复制代码
|