繁体中文
设为首页
加入收藏
当前位置:ASP技术首页 >> ASP基础 >> 使用FileSystemObject,举个例子给你

使用FileSystemObject,举个例子给你

2006-05-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介:自己看一下,应该比较简单 sub WriteIni(sRoot,sUser,sPassword,sQuota) Const ftpservdir="C:\Program Files\Serv-U" dim str(7),sFullPath if isnull(sQuota) then sQuota=20480 sFullPath=sRoot & "\" & sUse...

自己看一下,应该比较简单

sub WriteIni(sRoot,sUser,sPassword,sQuota)

Const ftpservdir="C:\Program Files\Serv-U"

dim str(7),sFullPath

if isnull(sQuota) then sQuota=20480

sFullPath=sRoot & "\" & sUser

Set FO=CreateObject("Scripting.FileSystemObject")

Set TF=FO.OpenTextFile( ftpservdir & "\Serv-U.INI", 8, TRUE)

str(0)="[USER=" & sUser & "]" 'UserName

str(1)="Password=" & sPassword 'Password

str(2)="HomeDir=" & sFullPath 'Directory

str(3)="ChangePassword=YES"

str(4)="QuotaEnable=YES"

str(5)="QuotaMaxCurrent=" & cstr(sQuota) & ",0" 'Quota

str(6)="Access1=" & sFullPath & ",ARWMCDLP" 'Directory

str(7)="Timeout=5" 'TimeOut of Idle

dim i

for i=0 to 7

TF.writeline cstr(str(i))

next

TF.Close

end sub

责任编辑:admin
相关文章