帮忙解释一下ASP中 Function函数的使用 解释以下函数的函数名属性和参数 最好简单介绍一下函数的功能

2024-11-07 22:36:32
推荐回答(2个)
回答(1):

'--------------------------------------
'函数功能:检查文件是否存在
'参数:strFilePath:文件路径的字符串
'返回值:true:文件存在,false:文件不存在
'--------------------------------------
Function ExistFile(ByVal strFilePath)

'--------------------------------------
'函数功能:获得文件句柄
'参数:strFilePath:文件路径的字符串
'返回值:文件句柄
'--------------------------------------
Function GetFile(ByVal strFilePath)

'--------------------------------------
'函数功能:新建文件
'参数:content:文件内容,fileDir:文件路径的字符串
'--------------------------------------
Function CreateFile(Byval content,Byval fileDir)

'--------------------------------------
'函数功能:删除文件
'参数:fileDir:文件路径的字符串
'--------------------------------------
Function DeleteFile(byval fileDir)

'--------------------------------------
'函数功能:新建文件夹
'参数:dirPath:文件夹路径的字符串
'--------------------------------------
Function CreateFolder(Byval dirPath)

'--------------------------------------
'函数功能:删除文件夹
'参数:dirPath:文件夹路径的字符串
'--------------------------------------
Function DeleteFolder(byval dirPath)

'--------------------------------------
'函数功能:文件夹是否存在
'参数:strFilePath:文件夹路径的字符串
'返回值:true:文件夹存在,false:文件夹不存在
'--------------------------------------
Function ExistFolder(ByVal strFilePath)

---------------------------------------------------
PS:有空请帮我踩踩空间,谢谢。

回答(2):

Function ExistFile(ByVal strFilePath) '判断strFilePath这个文件是否存在,strFilePath是这个文件的路径.是下相同
Function GetFile(ByVal strFilePath) '得到一个文件
Function CreateFile(Byval content,Byval fileDir) '创建一个文件,路径为fileDir,以下相同
Function DeleteFile(byval fileDir) '删除一个文件
Function CreateFolder(Byval dirPath) '建立一个文件夹,dirPath是该文件夹的路径,以下相同
Function DeleteFolder(byval dirPath) '删除一个文件夹
Function DeleteFolder(byval dirPath) '这个应该和上面的一样吧