| 
 
kidzgy 
中级用户
 
   
 
  
  
积分 262 
发帖 129 
注册 2007-7-11 
状态 离线
 | 
『第 61 楼』:
 
 
使用 LLM 解释/回答一下
  
下载地址已经失效了,请楼主检查一下。 
The download link has expired. Please have the thread starter check it. 
    
 
  
 |   
 | 
  2007-8-1 09:27 | 
  
 | 
 | 
 
jobesky 
新手上路
 
 
 
  
  
积分 4 
发帖 2 
注册 2006-9-12 
状态 离线
 | 
 | 
  2007-9-29 18:16 | 
  
 | 
 | 
 
binggao 
初级用户
 
  
 
  
  
积分 70 
发帖 33 
注册 2007-6-3 
状态 离线
 | 
『第 63 楼』:
 
 
使用 LLM 解释/回答一下
  
感觉  好难啊还要多多的学习啊] 
It feels really difficult. I still need to study a lot. 
    
 
  
 |   
 | 
  2007-9-30 09:02 | 
  
 | 
 | 
 
67411666 
初级用户
 
  
 
  
  
积分 45 
发帖 25 
注册 2007-10-14 
状态 离线
 | 
 | 
  2007-10-14 16:13 | 
  
 | 
 | 
 
hdzc 
初级用户
 
  
 
  
  
积分 146 
发帖 86 
注册 2007-10-1 
状态 离线
 | 
 | 
  2007-10-23 15:55 | 
  
 | 
 | 
 
vincentzpf 
新手上路
 
 
 
  
  
积分 3 
发帖 2 
注册 2007-11-28 
状态 离线
 | 
 | 
  2007-11-28 14:42 | 
  
 | 
 | 
 
hpwsb 
初级用户
 
  
 
  
  
积分 31 
发帖 16 
注册 2006-12-19 
状态 离线
 | 
 | 
  2007-12-2 12:00 | 
  
 | 
 | 
 
mrxuanfeng 
新手上路
 
 
 
  
  
积分 10 
发帖 5 
注册 2007-11-23 
状态 离线
 | 
『第 68 楼』:
 
 
使用 LLM 解释/回答一下
  
高手多多,路过路过 
There are many experts, passing by, passing by 
    
 
  
 |   
 | 
  2007-12-4 17:46 | 
  
 | 
 | 
 
hdzc 
初级用户
 
  
 
  
  
积分 146 
发帖 86 
注册 2007-10-1 
状态 离线
 | 
『第 69 楼』:
 
 
使用 LLM 解释/回答一下
  
下载地址已恢复谢谢提供太好用了 
The download address has been restored. Thanks for providing it. It's too useful. 
    
 
  
 |   
 | 
  2008-1-6 22:14 | 
  
 | 
 | 
 
gto1235 
新手上路
 
 
 
  
  
积分 2 
发帖 1 
注册 2008-1-5 
状态 离线
 | 
『第 70 楼』:
 
 
使用 LLM 解释/回答一下
  
资历不够 不足以发表看法  先学习 
Lack of sufficient qualifications to express an opinion, first study 
    
 
  
 |   
 | 
  2008-1-7 09:04 | 
  
 | 
 | 
 
ljxar 
新手上路
 
 
 
  
  
积分 2 
发帖 1 
注册 2008-3-28 
状态 离线
 | 
『第 71 楼』:
 新手求高手给指条活路阿!批处理问题!!
 
使用 LLM 解释/回答一下
  
高手进 !!!! 后缀名是.ASP的文件,我用WORD打开这种文件格式,再将其中的内容一个个的复制到WORD文档中!!!请问如何批处理打开、复制、粘贴!1000多份文件是ASP后缀的!~~~要是一个个的复制粘贴会死人的!~~~~谢谢!~~请百忙之中帮我编个批处理程序发到我的邮箱—— LJXAR@163.COM !其他语言也可以!再次感谢!!~急死我了!  
Dude, here's a VBScript example that can help you read the contents of ASP files and write them into a single text file. Save the following code as a `.vbs` file (for example, `asp_to_txt.vbs`): 
 
```vbscript 
Set objFSO = CreateObject("Scripting.FileSystemObject") 
Set objOutput = objFSO.CreateTextFile("output.txt", True) 
 
strFolder = InputBox("Please enter the folder path containing ASP files") 
Set objFolder = objFSO.GetFolder(strFolder) 
Set colFiles = objFolder.Files 
 
For Each objFile In colFiles 
    If LCase(objFSO.GetExtensionName(objFile)) = "asp" Then 
        Set objInput = objFSO.OpenTextFile(objFile.Path) 
        strContent = objInput.ReadAll 
        objOutput.WriteLine(strContent) 
        objInput.Close 
    End If 
Next 
 
objOutput.Close 
MsgBox "Operation completed!" 
``` 
 
You need to run this script, and when prompted, enter the folder path that contains all the ASP files. It will read all the content of the ASP files in that folder and write them into a single `output.txt` file.  
 
Please note that you need to have appropriate file access permissions to run this script. Also, this is a simple way to collect the contents; you can adjust it according to more specific needs if necessary. 
    
 
  
 |   
 | 
  2008-3-28 12:26 | 
  
 | 
 | 
 
kaikai163 
初级用户
 
  
 
  
  
积分 107 
发帖 60 
注册 2007-11-7 
状态 离线
 | 
『第 72 楼』:
 
 
使用 LLM 解释/回答一下
  
真是一群高手啊!学习中 
What a group of experts! Learning 
    
 
  
 |   
 | 
  2008-3-28 20:26 | 
  
 | 
 | 
 
cgi 
初级用户
 
  
 
  
  
积分 38 
发帖 14 
注册 2007-3-27 
状态 离线
 | 
『第 73 楼』:
 
 
使用 LLM 解释/回答一下
  
版主出手果然不同凡響,不過有一個問題想請問版主在使用 “◇以同名或剪贴板新建文件夹” 時,若文件名內有 “(” 或 “)” 便不能以同名或剪贴板新建文件夹,不知是否有解決之道,謝謝! 
The moderator's work is indeed extraordinary, but there is one question I would like to ask the moderator. When using "◇Create a new folder with the same name or clipboard", if there are "(" or ")" in the file name, the new folder cannot be created with the same name or clipboard. Is there a solution? Thank you! 
    
 
  
 |   
 | 
  2008-3-31 14:06 | 
  
 | 
 | 
 
xtanbmy 
初级用户
 
  
 
  
 
积分 47 
发帖 31 
注册 2008-3-17 
状态 离线
 | 
 | 
  2008-4-7 19:54 | 
  
 | 
 | 
 
xb2008chopin 
初级用户
 
  
 
  
  
积分 24 
发帖 11 
注册 2008-4-6 
状态 离线
 | 
『第 75 楼』:
 
 
使用 LLM 解释/回答一下
  
确实比较经典 我收藏了 谢谢LZ 
It's indeed quite classic. I've collected it. Thanks, LZ. 
    
 
  
 |   
 | 
  2008-4-8 03:12 | 
  
 |