asp实现检查目录是否存在与建立目录的函数
程序员文章站
2022-04-14 20:19:45
'------------------------- '--检查目录是否存在 '---------------------- function checkdir(...
'-------------------------
'--检查目录是否存在
'----------------------
function checkdir(byval folderpath)
dim fso
set fso = server.createobject("scripting.filesystemobject")
if fso.folderexists(server.mappath(folderpath)) then
'存在
checkdir = true
else
'不存在
checkdir = false
end if
set fso = nothing
end function
'-------------------------
'--建立目录
'----------------------
function makenewsdir(byval foldername)
dim fso
set fso = server.createobject("scripting.filesystemobject")
fso.createfolder(server.mappath(foldername))
if fso.folderexists(server.mappath(foldername)) then
makenewsdir = true
else
makenewsdir = false
end if
set fso = nothing
end function
'--检查目录是否存在
'----------------------
function checkdir(byval folderpath)
dim fso
set fso = server.createobject("scripting.filesystemobject")
if fso.folderexists(server.mappath(folderpath)) then
'存在
checkdir = true
else
'不存在
checkdir = false
end if
set fso = nothing
end function
'-------------------------
'--建立目录
'----------------------
function makenewsdir(byval foldername)
dim fso
set fso = server.createobject("scripting.filesystemobject")
fso.createfolder(server.mappath(foldername))
if fso.folderexists(server.mappath(foldername)) then
makenewsdir = true
else
makenewsdir = false
end if
set fso = nothing
end function
上一篇: tp5 查询单个字段的值
下一篇: (项目)生鲜超市(十一)
推荐阅读
-
php file_exists 检查文件或目录是否存在的函数
-
CheckFile函数之asp实现检查某一文件是否存在的代码
-
asp实现检查目录是否存在与建立目录的函数
-
php file_exists 检查文件或目录是否存在的函数_PHP
-
php file_exists 检查文件或目录是否存在的函数
-
php file_exists 检查文件或目录是否存在的函数
-
php file_exists 检查文件或目录是否存在的函数_PHP教程
-
php file_exists 检查文件或目录是否存在的函数
-
php file_exists 检查文件或目录是否存在的函数_PHP教程
-
php file_exists 检查文件或目录是否存在的函数_php基础