首 页文章中心下载中心繁體中文
设为首页
加入收藏
联系我们
您当前的位置:开源盛世-源代码下载网 -> 文章中心 -> V B 专区 -> 文章内容 退出登录 用户管理
栏目导航
· VC++专区 · V B 专区
· GIS 专区 · PDA 专区
· 其他编程 · 网站开发类
· 数据库类 · 软件应用
· 网络安全 · 论文专区
· 综合资讯
热门文章
· Tab Control控件使用...
· 学生档案管理系统
· [图文] 排列组合公式
· UTF-8与GB2312之间的...
· DirectShow下载安装...
· Virtual PC 在PAE模...
· Windows2000终端服务...
· MapInfo上的GIS系统...
· Mapbasic参考手册索...
· MapX应用开发中文讲...
相关文章
用createdirectory创建文件夹
作者:佚名  来源:vscodes.com整理  发布时间:2005-12-16 13:47:08  发布人:Polaris

减小字体 增大字体

  用createdirectory创建文件夹。(原创)

Private Sub Command1_Click()

Private Declare Function CreateDirectory Lib "kernel32" Alias "CreateDirectoryA" (ByVal lpPathName As String, lpSecurityAttributes As SECURITY_ATTRIBUTES) As Long

Dim attribut As SECURITY_ATTRIBUTES
attribut.nLength = Len(attribut)
attribut.lpSecurityDes criptor = &O0
attribut.bInheritHandle = False
   Dim counter As Long
   Dim tnew As String
   Dim onew As String
   Dim i As Long
   Dim lnew As Long
   Dim tx As String
   Dim mi As String
   Dim minstra As Long
   Dim a As String
   a = InputBox("请输入要创建的文件夹名", "创建文件夹名")
   counter = 0
   If Right(a, 1) <> "" Then
   a = a & ""
   End If
   lnew = Len(a)
   For i = 1 To lnew
     tx = Left(a, i)
     If Len(tx) > 3 Then
      mi = Right(tx, 1)
      If mi = "" Then
      Call CreateDirectory(tx, attribut)
      End If
     End If
    Next i

end sub


End of《用createdirectory创建文件夹》

[] [返回上一页] [打 印] [收 藏]
下一篇文章:处理鼠标移出事件
 
∷相关“用createdirectory创建文件夹”文章评论∷
(评论内容只代表网友观点,与本站立场无关!) [更多评论...]
关于本站 - 网站帮助 - 广告合作 - 下载声明 - 友情连接 - 网站地图 网站目录 鄂ICP备06007162
开源盛世 版权所有Copyright © 2003-2005 VSCodes.Com. All Rights Reserved.