当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP Delete 方法

ASP
ASP Drive
ASP File
ASP Folder
ASP Dictionary
ASP ADO
ASP AdRotator
ASP BrowserCap
ASP Content Linking
ASP Content Rotator
ASP Quick Ref
ASP 摘要
ASP 实例

ASP Delete 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 360 ::
收藏到网摘: n/a

The Delete method deletes a specified file or folder.
ASP Delete的作用是删除一个指定的文件或文件夹。

Syntax
语法

FileObject.Delete[(force)]

FolderObject.Delete[(force)]


Parameter参数 Description描述
force Optional. A Boolean value that indicates whether a read-only file or folder are to be deleted. True indicates that a read-only file/folder will be deleted and false indicates that it will not be deleted. Default is false.
可选参数。逻辑值,用于指明只读(Read-Only)文件或文件夹是否允许删除。True逻辑真表示可以删除只读文件或文件夹;False逻辑假则表示不能删除只读文件或文件夹。默认情况为False逻辑假

Example for the File object
文件对象举例

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:test.txt")
f.Delete
set f=nothing
set fs=nothing
%>

Example for the Folder object
文件夹对象举例

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:test")
fo.Delete
set fo=nothing
set fs=nothing
%>

评论 (0) All

登陆 | 还没注册?