黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP Type 屬性

asp type 屬性

file 對(duì)象參考手冊(cè) 完整的 file 對(duì)象參考手冊(cè)

type 屬性用于返回指定文件或文件夾的類型。

語(yǔ)法

fileobject.type

folderobject.type

針對(duì) file 對(duì)象的實(shí)例

<%
dim fs,f
set fs=server.createobject("scripting.filesystemobject")
set f=fs.getfile("c:\test.txt")
response.write("the file test.txt is of type: ")
response.write(f.type)
set f=nothing
set fs=nothing
%>

輸出:

the file test.txt is of type: text document

<%
dim fs,f
set fs=server.createobject("scripting.filesystemobject")
set f=fs.getfile("c:\test.asp")
response.write("the file test.asp is of type: ")
response.write(f.type)
set f=nothing
set fs=nothing
%>

輸出:

the file test.asp is of type: active server document

針對(duì) folder 對(duì)象的實(shí)例

<%
dim fs,fo
set fs=server.createobject("scripting.filesystemobject")
set fo=fs.getfolder("c:\test")
response.write("the folder test is of type: ")
response.write(fo.type)
set fo=nothing
set fs=nothing
%>

輸出:

the folder test is of type: file folder

file 對(duì)象參考手冊(cè) 完整的 file 對(duì)象參考手冊(cè)
相關(guān)文章