winxp系统就容易很多了。
使用步骤:
1.把下面的VBS保存为 d盘.vbs,然后右键->复制
2.运行->输入"sendto"->确定
3.在打开的文件夹中右键->粘贴快捷方式
这样右键->发送到 就会多了一个选项,使用即可
注意,如果要发送到以他地方,把VBS中的 "d:\" 改为你相应的目录即可,最后一定要有 \- '保存我为 d盘.vbs
- Dim objArgs,fso,strText,fileName,extName,destPath
-
- destPath = "d:\" '发送到d:\
-
- Set objArgs = WScript.Arguments
- If objArgs.Count = 0 Then WScript.Quit
-
- strText = CreateObject("htmlfile").ParentWindow.ClipboardData.GetData("text")
-
- '剪贴板的内容为空就退出
- If strText = "" Then WScript.Quit
-
- Set fso = CreateObject("SCripting.FileSystemObject")
-
- If fso.FileExists(objArgs.Item(0)) Then
- extName = fso.GetExtensionName(objArgs.Item(0))
- If fso.FileExists(strText & "." & extName) Then
- fileName = strText & "1." & extName
- Else
- fileName = strText & "." & extName
- End If
- fso.CopyFile objArgs.Item(0),destPath & fileName
- ElseIf fso.FolderExists(objArgs.Item(0)) Then
- If fso.FolderExists(strText) Then
- fileName = strText & "1"
- Else
- fileName = strText
- End If
- fso.CopyFolder objArgs.Item(0),destPath & fileName
- End If
-
- Set fso = Nothing
- Set objArgs = Nothing
复制代码
|