当前位置: 网学 > 编程文档 > ASP > 正文

Asp中一些FSO方面的函数

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/17
下载{$ArticleTitle}原创论文样式

''''//==================================文件操作==================================

''''取文件大小
Function GetFileSize(FileName)
''''//功能:取文件大小
''''//形参:文件名
''''//返回值:成功为文件大小,失败为-1
''''//
Dim f
If ReportFileStatus(FileName) = 1 Then
Set f = fso.Getfile(FileName)
GetFileSize = f.Size
Else
GetFileSize = -1
End if
End Function

''''文件删除
Function deleteAFile(filespec)
''''//功能:文件删除
''''//形参:文件名
''''//返回值:成功为1,失败为-1
''''//
If ReportFileStatus(filespec) = 1 Then
fso.deleteFile(filespec)
deleteAFile = 1
Else
deleteAFile = -1
End if
End Function

''''显示文件列表
Function ShowFileList(folderspec)
''''//功能:目录存在时显示此目录下的所有文件
''''//形参:目录名
''''//返回值:成功为文件列表,失败为-1
''''//
Dim f, f1, fc, s
If ReportFolderStatus(folderspec) = 1 Then
Set f = fso.GetFolder(folderspec)
Set fc = f.Files
For Each f1 in fc
s = s & f1.name
s = s & "|"
Next
ShowFileList = s
Else
ShowFileList = -1
End if
End Function

''''!!!
''''文件复制
Function CopyAFile(SourceFile,DestinationFile)
''''//功能:源文件存在时,才能对文件进行复制,目的文件无影响
''''//形参:源文件,目的文件
''''//返回值:成功为1,失败为-1
''''//
Dim MyFile
If ReportFileStatus(SourceFile) = 1 Then
Set MyFile = fso.GetFile(SourceFile)
MyFile.Copy (DestinationFile)
CopyAFile = 1
Else
CopyAFile = -1
End if
End Function

''''文件移动
''''Response.Write MoveAFile("f:\123\4561.exe","f:\123\4562.txt")
Function MoveAFile(SourceFile,DestinationFile)
''''//功能:源文件存在时目的文件不存在时才能对文件进行移动
''''//形参:源文件,目的文件
''''//返回值:成功为1,失败为-1
''''//
If ReportFileStatus(SourceFile)=1 And ReportFileStatus(DestinationFileORPath) =

-1 Then
fso.MoveFile SourceFile,DestinationFileORPath
MoveAFile = 1
Else
MoveAFile = -1
End if
End Function

''''文件是否存在?
''''Response.Write ReportFileStatus("G:\soft\delphi\my_pro\代码库.exe")
Function ReportFileStatus(FileName)
''''//功能:判断文件是否存在
''''//形参:文件名
''''//返回值:成功为1,失败为-1
''''//
Dim msg
msg = -1
If (fso.FileExists(FileName)) Then
msg = 1
Else
msg = -1
End If
ReportFileStatus = msg
End Function


''''文件创建日期
''''Response.Write ShowDatecreated("G:\soft\delphi\my_pro\代码库.exe")
''''Response.Write ShowDatecreated("G:\soft\delphi\my_pro\复件 代码库.exe")
Function ShowDatecreated(filespec)
''''//功能:文件创建日期
''''//形参:文件名
''''//返回值:成功:文件创建日期,失败:-1
''''//
Dim f
If ReportFileStatus(filespec) = 1 Then
Set f = fso.GetFile(filespec)
ShowDatecreated = f.Datecreated
Else
ShowDatecreated = -1
End if
End Function

''''文件属性
''''Response.Write GetAttributes("G:\soft\delphi\my_pro\复件 代码库.exe")
Function GetAttributes(FileName)
''''//功能:显示文件属性
''''//形参:文件名
''''//返回值:成功:文件属性,失败:-1
''''//
Dim f,Str
If ReportFileStatus(FileName) = 1 Then
Set f = fso.GetFile(FileName)
select Case f.attributes
Case 0 Str="普通文件。没有设置任何属性。 "
Case 1 Str="只读文件。可读写。 "
Case 2 Str="隐藏文件。可读写
  • 下一篇资讯: ASP如何获取真实IP地址
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号