asp fso创建文件夹

Function CreatePath(fromPath)
 Dim objFSO, uploadpath
 uploadpath = Year(Now) & "-" & Month(Now) '以年月创建上传文件夹,格式:2003-8
 On Error Resume Next
 Set objFSO = CreateObject(Newasp.FSO_ScriptName)
 If objFSO.FolderExists(Server.MapPath(fromPath & uploadpath)) = False Then
  objFSO.CreateFolder Server.MapPath(fromPath & uploadpath)
 End If
 If Err.Number = 0 Then
  CreatePath = uploadpath & "/"
 Else
  CreatePath = ""
 End If
 Set objFSO = Nothing
End Function

时间: 2024-12-03 09:16:53

asp fso创建文件夹的相关文章

如何用ASP+FSO创建文件夹和文件

创建文件夹: Set fso = CreateObject("Scripting.FileSystemObject") fso.CreateFolder ("C:\test") 创建文件的方法有三种: 第一种方法是用 CreateTextFile 方法. Set fso = CreateObject("Scripting.FileSystemObject") Set f1 = fso.CreateTextFile("c:\test.tx

asp.net创建文件夹的IO类的问题

C#中.net中得IO类虽然功能很强大,但是正是因为功能强大,所以在很多虚拟服务商的服务器上并不实用 .因为IO.Directory和IO.DirectoryInfo在应用文件夹操作中,会遍历网站所在的硬盘的磁盘跟目录,一般虚拟服务商并不会给这个磁盘的Network service用户开启读取权限,所以在操作文件夹的时候,使用IO下的这两个类会出现如下错误 未找到路径"E:\"的一部分. 说明: 执行当前 Web 请求期间,出现未处理的异常.请检查堆栈跟踪信息,以了解有关该错误以及代码

asp fso:创建文件 CreateTextFile 实例教程

asp fso:创建文件 CreateTextFile 实例教程 CreateTextFile方法创建一个新的文本文件在当前文件夹中,并传回TextStream物件,可以用来读取或写入档案. 语法 FileSystemObject.CreateTextFile(filename[,overwrite[,unicode]]) FolderObject.CreateTextFile(filename[,overwrite[,unicode]]) Parameter Description filen

中创-asp.net创建文件夹失败....新建一级文件夹正常,新建二级文件夹失败

问题描述 asp.net创建文件夹失败....新建一级文件夹正常,新建二级文件夹失败 asp.net的一个项目 大致就是给用户在服务器上分配一个控件,比如系统中有个文件夹叫aaa,我在用户 用户登录之后在aaa在aaa中创建一个文件夹叫admin,但是当admin用户登录之后, 如果admin在aaa下新建文件夹不成功 本机的iis以及程序都是正常的,但是部署到服务器上就不行 不是路径的问题,因为我本机都是好的,而且不报任何错误 想问下有没有遇到此问题的人 解决方案 检查下是不是权限的问题. 解

使用ASP和ASP.NET来创建文件夹和文件。

asp.net|创建 ASP: <%sub writefile(file) Response.Write "file:"+file Dim fso, tf  Set fso = CreateObject("Scripting.FileSystemObject")  Set tf = fso.CreateTextFile(file, True)  tf.WriteLine("Testing 1, 2, 3.")  tf.WriteBlankL

asp下利用fso实现文件夹或文件移动改名等操作函数_应用技巧

asp利用fso实现文件的移动function movefiles(sFolder,dFolder)     on error resume next     dim fso     set fso = server.createobject("scripting.filesystemobject")     if fso.folderexists(server.mappath(sFolder)) and fso.folderexists(server.mappath(dFolder)

asp下利用fso实现文件夹或文件移动改名等操作函数

asp利用fso实现文件的移动 function movefiles(sFolder,dFolder)     on error resume next     dim fso     set fso = server.createobject("scripting.filesystemobject")     if fso.folderexists(server.mappath(sFolder)) and fso.folderexists(server.mappath(dFolder

Asp.net对文件夹和文件的操作类

asp.net using System;using System.IO;using System.Web; namespace SEC{    /**//// <summary>    /// 对文件和文件夹的操作类    /// </summary>    public class FileControl    {        public FileControl()        {                    }        /**//// <summa

ASP入门教程-文件夹操作

文件夹操作主要包括创建.复制.移动和删除文件夹,检查文件夹是否存在以及指定路径中某文件夹中相应的文件对象.完成这些操作可以使用 FileSystemObjec对象或 Folder 对象的方法. 一.使用 FileSystemObject 对象的相应方法进行文件夹进行操作 1.使用 FileSystemObject 对象创建文件夹时,先要创建 FileSystemObject 对象,再使用它的 CreateFolder 方法创建文件夹对象,其语法格式如下: fso.CreateFolder(fol