자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb6.0/vba

IT HUB를 찾아주셔서 감사합니다.

vb6.0/vba [vb6.0/vba] 선택한 폴더의 속성정보 가져오기 / get folder properties

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 5,544회 작성일 20-02-03 12:21

본문

Sub program1472_com()
    Dim fso As Object, f As Object
    Dim fPath As String
    Set fso = CreateObject("Scripting.FileSystemObject")
    With Application.FileDialog(msoFileDialogFolderPicker)
        .Title = "Select a Folder"
        .AllowMultiSelect = False
        .InitialFileName = Application.DefaultFilePath
        If .Show <> -1 Then Exit Sub
        fPath = .SelectedItems(1)
    End With
    
    Set f = fso.GetFolder(fPath)
    On Error GoTo ErrPass
    Debug.Print "만 든 날 짜 : " & f.DateCreated
    Debug.Print "위       치 : " & f.Drive
    Debug.Print "이       름 : " & f.Name
    Debug.Print "상 위 폴 더 : " & f.ParentFolder
    Debug.Print "경       로 : " & f.Path
    Debug.Print "짧 은 경 로 : " & f.ShortPath
    Debug.Print "할 당 크 기 : " & f.Size
    Debug.Print "종       류 : " & f.Type
    Debug.Print "파       일 : " & f.Files.Count
    Debug.Print "폴       더 : " & f.SubFolders.Count
ErrPass:
    If Err Then
        Err.Clear
        MsgBox "폴더만 가능합니다."
    End If
End Sub
 

댓글목록

등록된 댓글이 없습니다.