基本信息
源码名称:VB.NET 获取父子目录的文件名
源码大小:0.22M
文件格式:.zip
开发语言:ASP
更新时间:2020-04-25
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

获取父子目录中的文件名,那么获取完之后我们能拿他们干点什么呢?这就见仁见智了,你可以把获取的文件名编一个规则重命名旧的文件、移动文件、复制文件、删除指定文件等操作,这就看你们的想象力和应用了!


Imports System.IO

Public Class Cls_file
    Private Shared ReadOnly F_List As New List(Of FileInfo)
    Public Shared Function Get_AllFlist(ByVal Path As String, ByVal EXT As String) As List(Of FileInfo)
        Try
            If Not String.IsNullOrWhiteSpace(Path) Then  '判断文件夹路径是null或者是空
                If Directory.Exists(Path) Then  '判断文件夹是否存在,不存在则创建一个
                    Get_File_ALL(Path, EXT)  '获取所有文件列表
                Else
                    Directory.CreateDirectory(Path)  '创建一个文件夹
                End If
            Else
                MsgBox("文件路径为空!", MsgBoxStyle.Critical, "警告")
            End If
            Return F_List  '返回文件列表
        Catch ex As Exception
            Return Nothing
            MsgBox("错误:" & ex.Message, MsgBoxStyle.Critical, "警告")
        End Try
    End Function

    Private Shared Sub Get_File_ALL(ByVal Path As String, ByVal EXT As String)
        Try
            Dim Sub_Dir As String() = Directory.GetDirectories(Path) '获取子目录路径
            Dim P_File_INFO As New DirectoryInfo(Path)
            Dim F_File As FileInfo() = P_File_INFO.GetFiles()  '获取父目录文件信息
            If F_File.Length <> 0 OrElse Sub_Dir.Length <> 0 Then
                For Each Flist As FileInfo In F_File  ''获取父目录文件名
                    If EXT.ToLower = Flist.Extension.ToLower Then  '取指定格式文件名
                        F_List.Add(Flist)  ''文件名保存到文件名列表
                    End If
                Next
                For Each Sub_Flist As String In Sub_Dir '获取子目录文件路径
                    Get_File_ALL(Sub_Flist, EXT)  '复用获取子目录中的文件名
                Next
            End If
        Catch ex As Exception
            MsgBox("错误:" & ex.Message, MsgBoxStyle.Critical, "警告")
        End Try
    End Sub

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        FolderBrowserDialog1.RootFolder = Environment.SpecialFolder.Desktop
        FolderBrowserDialog1.ShowNewFolderButton = True
        Dim f_ls As New List(Of IO.FileInfo)
        If FolderBrowserDialog1.ShowDialog = DialogResult.OK Then
            f_ls = Cls_file.Get_AllFlist(FolderBrowserDialog1.SelectedPath, ".dwg")
        End If
        Dim t As New Text.StringBuilder
        For Each x In f_ls
            t.Append(x.ToString).Append(vbCrLf)
        Next

        RichTextBox1.Text = t.ToString
    End Sub

End Class