Click here to Skip to main content
15,891,844 members
Articles / Desktop Programming / MFC
Article

Copy binary folder files

Rate me:
Please Sign up or sign in to vote.
1.27/5 (12 votes)
25 Dec 2003 49.8K   624   10   2
EZ methods to copy a complete folder, while filtering the filetypes as needed.

Introduction

I needed a dirty method for copying my image folder.

Just use: WriteFolder txtSRCPATH, txtDESTPATH

Option Explicit

Private Sub Form_Load()

End Sub

Private Sub cmdCOPY_Click()
    WriteFolder txtSRCPATH, txtDESTPATH
End Sub
Sub WriteFolder(ByVal fsrc As String, ByVal fdes As String)

Dim Buffer() As Byte
Dim fname As String

    fname = Dir(fsrc, vbArchive)

    Do While fname <> ""
    DoEvents
        If (InStr(1, fname, "jpeg", vbBinaryCompare) > 0 <BR>              Or InStr(1, fname, "gif", vbBinaryCompare) > 0) Then
            DoEvents
            WriteFile fdes & fname, ReadFile(fsrc & fname, Buffer())
        End If
        DoEvents
        
        fname = Dir()
        DoEvents
    Loop

End Sub


Function ReadFile(fname As String, Buffer() As Byte) As Byte()

Dim fh, flen As Long

    fh = FreeFile
    Open fname For Binary Access Read As #fh
    flen = LOF(fh)
    Buffer = InputB(flen, #fh)
    Close #fh

ReadFile = Buffer()

End Function
Sub WriteFile(fname As String, Buffer() As Byte)

Dim fh As Long

    fh = FreeFile
    Open fname For Binary Access Write As #fh
    Put #fh, , Buffer
    Close #fh

End Sub

The WriteFolder method passes "jpeg" and "gif" files only. (You can change this as needed.)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
Hubris is like armor. He is afraid to take on a Coder project for what it may do to him, both financially and to his health.

WEB Bowser is a hack that makes it easy to acquire internet content for archival. Its also possible to PROXY it, serving it to the internet as well. Given this capability, people will change the internet again.

I envision a programmable server that will acquire content for proxy. Users will then add proxy content to their own, making it available almost as if it were their own. We are already "information collectors." Its the opinions that are getting real hard to find.

-

Comments and Discussions

 
Generalwrong section Pin
5150.Net10-Oct-05 7:12
5150.Net10-Oct-05 7:12 
QuestionBinary Compare? Pin
Heath Stewart28-Dec-03 4:37
protectorHeath Stewart28-Dec-03 4:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.