Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


[Idea] Can someone delete that post for me Ive solve the thing filter_list
Author
Message
[Idea] Can someone delete that post for me Ive solve the thing #1
Please delete the tread sorry for the inconvenience

H
You must register or login to view this content.

H
You must register or login to view this content.

Reply

RE: [Idea] FTP Upload whole Folder #2
hope this works ( haven't tested ):
Code:
Dim URI As String = TextBox1.Text
        For Each ss As String In IO.Directory.GetFiles(TextBox3.Text)
            Dim request As System.Net.FtpWebRequest = DirectCast(System.Net.FtpWebRequest.Create(URI), System.Net.FtpWebRequest)
            request.Credentials = New System.Net.NetworkCredential(TextBox2.Text, TextBox4.Text)
            request.Method = System.Net.WebRequestMethods.Ftp.UploadFile
            Dim encoding As New System.Text.UTF8Encoding()
            Dim file() As Byte = encoding.GetBytes(ss)
            Dim strz As System.IO.Stream = request.GetRequestStream()
            strz.Write(file, 0, file.Length)
            strz.Close()
            strz.Dispose()
        Next


btw sage made something like that [link=http://www.hackcommunity.com/Thread-T7Sage-s-HC-MSN-ChatLog-Stealer-HC-Official-Tool]here[/link] Biggrin
Pierce the life fibers with your drill.

Reply

RE: [Idea] FTP Upload whole Folder #3
Quote:btw sage made something like that here XD
Yes i am doing something exactly like that Tongue
Sage is good if he can i hope i can too

Am getting error as "The directory name is invalid."

H
You must register or login to view this content.

H
You must register or login to view this content.

Reply







Users browsing this thread: 1 Guest(s)