1234

ExcelHome技术论坛

用户名  找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

帖子
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
楼主: jsgj2023

[分享] 常用代码归集

  [复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:00 | 显示全部楼层
Sub 判断指定的文件是否存在()
Dim myfilename As String
myfilename = ThisWorkbook.Path & "\寻找Adele-lfy.xls"
If Len(Dir(myfilename, vbDirectory)) > 0 Then
    If Dir(myfilename) <> "" Then
        MsgBox "该文件存在!"
    Else
        MsgBox "该文件不存在!"
    End If
Else
    MsgBox "所指定的文件夹或文件不存在!"
End If
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:03 | 显示全部楼层
Sub 获取当前电脑的盘符()
Dim fso As Scripting.FileSystemObject
Dim mydrive As Scripting.Drive
Dim i As Integer
Set fso = New Scripting.FileSystemObject
i = 1
For Each mydrive In fso.Drives
    Cells(i, 1) = mydrive.DriveLetter
    i = i + 1
Next
Set fso = Nothing
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:07 | 显示全部楼层
Sub 判断指定的驱动器是否存在()
Dim fso As Scripting.FileSystemObject
Dim strmsg As String
Dim disk As String
disk = InputBox("请输入驱动器名称:")
Set fso = New Scripting.FileSystemObject
If fso.DriveExists(disk) Then
    strmsg = "驱动器" & UCase(disk) & "存在!"
Else
     strmsg = "驱动器" & UCase(disk) & "不存在!"
End If
    MsgBox strmsg
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:11 | 显示全部楼层
Sub 获取指定文件夹的路径()
Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
MsgBox "system文件夹路径为:" & fso.GetSpecialFolder(specialfolder:=SystemFolder).Path
MsgBox "temporary文件夹路径为:" & fso.GetSpecialFolder(specialfolder:=TemporaryFolder).Path
MsgBox "windows文件夹路径为:" & fso.GetSpecialFolder(specialfolder:=WindowsFolder).Path
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:17 | 显示全部楼层
Sub 获取当前文件夹下的子文件夹名称和大小()
Dim fso As Scripting.FileSystemObject
Dim myfol As Scripting.Folder
Dim myfolder As String
Dim i As Long
myfolder = ThisWorkbook.Path
Range("a1:c1") = Array("子文件名称", "大小", "短名称")
Set fso = New Scripting.FileSystemObject
i = 2
For Each myfol In fso.GetFolder(myfolder).SubFolders
    Cells(i, 1) = myfol.Name
    Cells(i, 2) = myfol.Size
    Cells(i, 3) = myfol.ShortName
    i = i + 1
Next
Set fso = Nothing
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:27 | 显示全部楼层
Sub 获取当前文件夹的相关操作信息()
    Dim fso As New FileSystemObject
    Dim myfolder As Folder
    Set myfolder = fso.GetFolder(ThisWorkbook.Path)
    MsgBox "名称:" & myfolder.Name _
    & vbCrLf & "DOS用短名称:" & myfolder.ShortName _
    & vbCrLf & "路径:" & myfolder.Path _
    & vbCrLf & "大小:" & Round(myfolder.Size / 1024, 2) & "KB" _
    & vbCrLf & "类型:" & myfolder.Type _
    & vbCrLf & "创建日期:" & myfolder.DateCreated _
    & vbCrLf & "最近一次访问日期:" & myfolder.DateLastAccessed _
    & vbCrLf & "最近一次修改日期:" & myfolder.DateLastModified _
    & vbCrLf & "所在驱动器:" & myfolder.Drive _
    & vbCrLf & "所在文件夹:" & myfolder.ParentFolder
    Set myfolder = Nothing
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:34 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
Sub 判断当前文件夹的属性()
Dim fso As Scripting.FileSystemObject
Dim mystr As String
Dim myfolder As String
myfolder = ThisWorkbook.Path
Set fso = New Scripting.FileSystemObject
With fso.GetFolder(myfolder)
    If (.Attributes And Normal) = Normal Then mystr = mystr & "普通"
    If (.Attributes And ReadOnly) = ReadOnly Then mystr = mystr & "只读"
    If (.Attributes And Hidden) = Hidden Then mystr = mystr & "隐藏"
    If (.Attributes And System) = System Then mystr = mystr & "系统"
    If (.Attributes And Directory) = Directory Then mystr = mystr & "文件夹"
    If (.Attributes And Archive) = Archive Then mystr = mystr & "存档"
End With
MsgBox "该文件夹的属性为:" & mystr
Set fso = Nothing
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:37 | 显示全部楼层
Sub 创建指定名称的文件夹()
Dim fso  As Scripting.FileSystemObject
Dim myfolder As String
myfolder = ThisWorkbook.Path & "\Adele"
Set fso = New Scripting.FileSystemObject
If fso.FolderExists(myfolder) Then
    MsgBox "该文件夹已经存在,无法创建!"
Else
    fso.CreateFolder myfolder
    MsgBox "文件夹创建成功!"
End If
Set fso = Nothing
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:45 | 显示全部楼层
Sub 移动指定的文件夹()
    Dim myfolder As String
    Dim mynewfilepath As String
    Dim fso As Scripting.FileSystemObject
    myfolder = ThisWorkbook.Path & "\Adele"
    mynewfilepath = ThisWorkbook.Path & "\lfy\"
    Set fso = New Scripting.FileSystemObject
    If fso.FolderExists(myfolder) Then
        fso.MoveFolder myfolder, mynewfilepath
        MsgBox "已经将文件夹" & myfolder & "移动到了文件" & mynewfilepath
    Else
        MsgBox "要移动的文件夹不存在!"
    End If
    Set fso = Nothing
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2017-2-6 14:49 | 显示全部楼层

Sub 删除指定目标位置的文件()
Dim myfolder As String
Dim fso As Scripting.FileSystemObject
myfolder = ThisWorkbook.Path & "\Adele\lfy"
Set fso = New Scripting.FileSystemObject
If fso.FolderExists(myfolder) Then
    fso.DeleteFolder myfolder, force:=True
    MsgBox "文件夹" & myfolder & "连同文件一起被删除了!"
Else
    MsgBox "文件夹" & myfolder & "不存在,无法删除!"
End If
Set fso = Nothing
End Sub
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

1234

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-4-6 11:24 , Processed in 0.022233 second(s), 5 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表