تقييم الموضوع :
  • 0 أصوات - بمعدل 0
  • 1
  • 2
  • 3
  • 4
  • 5
[VB.NET] السلام عليكم ورحمة الله وبركاته , كيف اقوم بحذف مجلد من قاعدة FTP :)
#1
السلام عليكم ورحمة الله وبركاته 

اريد ان اقوم بحذف مجلد من قاعدة بيانات FTP 
انا استخدم هاذا الكود لانشاء مجلد جديد 
لكن هل يوجد كود يقوم بحذف مجلد و جميع ما في داخل المجلد 
الكود الذي استخدمه لأنشاء مجلد هوا :
كود :
                                                           Dim myFTPRequest As FtpWebRequest = CType(FtpWebRequest.Create("الاف تي بي" ), FtpWebRequest)
                                                           myFTPRequest.KeepAlive = True
                                                           myFTPRequest.UseBinary = True
                                                           myFTPRequest.Method = WebRequestMethods.Ftp.MakeDirectory
                                                           myFTPRequest.Credentials = New NetworkCredential(اليوزر نيم, الباسورد)
 Dim myFTPResponse As FtpWebResponse = myFTPRequest.GetResponse
حاولت البحث لاكن فقط يوجد امر حذف ملف مثل ملف نصي او ملف صورة
لاكنني اريد كود يحذف المجلد و جميع الملفات التي في داخله Smile


Smile
اعتذر على كثرة المواضيع في هاذي الايام ~~ 
الرد }}}
تم الشكر بواسطة:
#2
This library will enable you to do few important actions such as:
1 - Connect to FTP server (for sure!)
2 - upload file
3 - download file
4 - delete remote file
4 - create remote folder
5 - delete remote folder
6 - rename remote folder
7 - list down all the files in the remote path
8 - get remote file size



الرد }}}
تم الشكر بواسطة: SnTnt , 3booody , حريف برمجة
#3
(18-11-19, 07:36 PM)asemshahen5 كتب :
This library will enable you to do few important actions such as:
1 - Connect to FTP server (for sure!)
2 - upload file
3 - download file
4 - delete remote file
4 - create remote folder
5 - delete remote folder
6 - rename remote folder
7 - list down all the files in the remote path
8 - get remote file size




؟؟؟

الرد }}}
تم الشكر بواسطة: حريف برمجة , حريف برمجة , asemshahen5 , asemshahen5
#4
بسم الله الرحمن الرحيم .

اولا ندخل الى الصفحة التالية : FTP using VB.NET ننسخ كود الكلاس ثم نبدء مشروع جديد في فيجوال بيزك .

نقوم باضافة كلاس جديدة باسم : FTPClass و نلصق الكود بداخله .

   

ونعمل ريبلد للبرنامج ثم نذهب الى الفورم و نضيف زر جديد اسمه : BtnDelete 

نفتح نافذة الكود الخاص بالفورم و نضيف الكود التالي في قسم التصريحات :

PHP كود :
Dim ftp As New FTPClass 

ثم نقوم بالضضغط الزدوج على زر الحذف و نكتب في نافذة الكود :

PHP كود :
       ftp.setDebug(True)
 
       ftp.setRemoteHost("192.168.1.000")
 
       ftp.setRemoteUser("user")
 
       ftp.setRemotePass("123456")
 
       ftp.setRemotePath("Root/")
 
       ftp.setRemotePort(21)
 
       ftp.login()
 
       ftp.chdir("Test")
 
       ftp.rmdir("Test"

طبعا غير رقم الايبي و اسم الامستخدم و كلمة المرور و باقي المعلومات بما يتناسب معك .

كود الكلاس :

PHP كود :
Imports System
Imports System
.Net
Imports System
.IO
Imports System
.Text
Imports System
.Net.Sockets

Public Class FTPClass
    
'-------------------------------------------------------------------------------------------------------------
    '
This library will enable you to do few important actions such as:
 
   '1 - Connect to FTP server (for sure!)
    '
upload file
    
'3 - download file
    '
delete remote file
    
'4 - create remote folder
    '
delete remote folder
    
'6 - rename remote folder
    '
- list down all the files in the remote path
    
'8 - get remote file size
    '
-------------------------------------------------------------------------------------------------------------
 
   Private remoteHost As StringremotePath As StringremoteUser As StringremotePass As Stringmes As String
    Private remotePort 
As Integerbytes As Integer
    Private clientSocket 
As Socket
    Private retValue 
As Integer
    Private debug 
As Boolean
    Private logined 
As Boolean
    Private reply 
As String
    Private Shared BLOCK_SIZE 
As Integer 512
    Private buffer 
As Byte() = New Byte(BLOCK_SIZE 1) {}
 
   Private ASCII As Encoding Encoding.ASCII
    Public Sub 
New()
 
       remoteHost "192.168.X.XX" 'Please specify correct IP
        remotePath = "."
        remoteUser = "username"
        remotePass = "password"
        remotePort = 21
        debug = False
        logined = False
    End Sub
    '''
 
   ''' Set the name of the FTP server to connect to.
    '''
 
   ''' Server name
    Public Sub setRemoteHost(ByVal remoteHost As String)
        Me.remoteHost = remoteHost
    End Sub
    '''
 
   ''' Return the name of the current FTP server.
    '''
 
   ''' Server name
    Public Function getRemoteHost() As String
        Return remoteHost
    End Function
    '''
 
   ''' Set the port number to use for FTP.
    '''
 
   ''' Port number
    Public Sub setRemotePort(ByVal remotePort As Integer)
        Me.remotePort = remotePort
    End Sub
    '''
 
   ''' Return the current port number.
    '''
 
   ''' Current port number
    Public Function getRemotePort() As Integer
        Return remotePort
    End Function
    '''
 
   ''' Set the remote directory path.
    '''
 
   ''' The remote directory path
    Public Sub setRemotePath(ByVal remotePath As String)
        Me.remotePath = remotePath
    End Sub
    '''
 
   ''' Return the current remote directory path.
    '''
 
   ''' The current remote directory path.
    Public Function getRemotePath() As String
        Return remotePath
    End Function
    '''
 
   ''' Set the user name to use for logging into the remote server.
    '''
 
   ''' Username
    Public Sub setRemoteUser(ByVal remoteUser As String)
        Me.remoteUser = remoteUser
    End Sub
    '''
 
   ''' Set the password to user for logging into the remote server.
    '''
 
   ''' Password
    Public Sub setRemotePass(ByVal remotePass As String)
        Me.remotePass = remotePass
    End Sub
    '''
 
   ''' Return a string array containing the remote directory's file list.
 
   '''
    '''
 
   '''
    Public Function getFileList(ByVal mask As String) As String()
        If Not logined Then
            login()
        End If
        Dim cSocket As Socket = createDataSocket()
        sendCommand("NLST " & mask)
        If Not (retValue = 150 OrElse retValue = 125) Then
            Throw New IOException(reply.Substring(4))
        End If
        mes = ""
        While True
            Dim bytes As Integer = cSocket.Receive(buffer, buffer.Length, 0)
            mes += ASCII.GetString(buffer, 0, bytes)
            If bytes < buffer.Length Then
                Exit While
            End If
        End While
        Dim seperator As Char() = {ControlChars.Lf}
        Dim mess As String() = mes.Split(seperator)
        cSocket.Close()
        readReply()
        If retValue <> 226 Then
            Throw New IOException(reply.Substring(4))
        End If
        Return mess
    End Function
    '''
 
   ''' Return the size of a file.
    '''
 
   '''
    '''
 
   Public Function getFileSize(ByVal fileName As String) As Long
        If Not logined Then
            login
()
 
       End If
 
       sendCommand("SIZE " fileName)
 
       Dim size As Long 0
        If retValue 
213 Then
            size 
Int64.Parse(reply.Substring(4))
 
       Else
            Throw 
New IOException(reply.Substring(4))
 
       End If
 
       Return size
    End 
Function
 
   '''
    ''' 
Login to the remote server.
 
   '''
    Public Sub login()
        clientSocket = New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
        Dim ep As New IPEndPoint(Dns.Resolve(remoteHost).AddressList(0), remotePort)
        Try
            clientSocket.Connect(ep)
        Catch generatedExceptionName As Exception
            Throw New IOException("Couldn'
t connect to remote server")
        End Try
        readReply()
        If retValue <> 220 Then
            close()
            Throw New IOException(reply.Substring(4))
        End If
        If debug Then
            MsgBox("
USER " & remoteUser)
        End If
        sendCommand("
USER " & remoteUser)
        If Not (retValue = 331 OrElse retValue = 230) Then
            cleanup()
            Throw New IOException(reply.Substring(4))
        End If
        If retValue <> 230 Then
            If debug Then
                MsgBox("
PASS xxx")
            End If
            sendCommand("
PASS " & remotePass)
            If Not (retValue = 230 OrElse retValue = 202) Then
                cleanup()
                Throw New IOException(reply.Substring(4))
            End If
        End If
        logined = True
        MsgBox("
Connected to " & remoteHost)
        chdir(remotePath)
    End Sub
    '''
    ''' If the value of mode is true, set binary mode for downloads.
    ''' Else, set Ascii mode.
    '''
    '''
    Public Sub setBinaryMode(ByVal mode As Boolean)
        If mode Then
            sendCommand("
TYPE I")
        Else
            sendCommand("
TYPE A")
        End If
        If retValue <> 200 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Download a file to the Assembly's local directory,
    ''' keeping the same file name.
    '''
    '''
    Public Sub download(ByVal remFileName As String)
        download(remFileName, "", False)
    End Sub
    '''
    ''' Download a remote file to the Assembly's local directory,
    ''' keeping the same file name, and set the resume flag.
    '''
    '''
    '''
    Public Sub download(ByVal remFileName As String, ByVal [resume] As Boolean)
        download(remFileName, "", [resume])
    End Sub
    '''
    ''' Download a remote file to a local file name which can include
    ''' a path. The local file name will be created or overwritten,
    ''' but the path must exist.
    '''
    '''
    '''
    Public Sub download(ByVal remFileName As String, ByVal locFileName As String)
        download(remFileName, locFileName, False)
    End Sub
    '''
    ''' Download a remote file to a local file name which can include
    ''' a path, and set the resume flag. The local file name will be
    ''' created or overwritten, but the path must exist.
    '''
    '''
    '''
    '''
    Public Sub download(ByVal remFileName As String, ByVal locFileName As String, ByVal [resume] As Boolean)
        If Not logined Then
            login()
        End If
        setBinaryMode(True)
        MsgBox((("
Downloading file " & remFileName & " from ") + remoteHost & "/") + remotePath)
        If locFileName.Equals("") Then
            locFileName = remFileName
        End If
        If Not File.Exists(locFileName) Then
            Dim st As Stream = File.Create(locFileName)
            st.Close()
        End If
        Dim output As New FileStream(locFileName, FileMode.Open)
        Dim cSocket As Socket = createDataSocket()
        Dim offset As Long = 0
        If [resume] Then
            offset = output.Length
            If offset > 0 Then
                sendCommand("
REST " & offset)
                If retValue <> 350 Then
                    'throw new IOException(reply.Substring(4));
                    'Some servers may not support resuming.
                    offset = 0
                End If
            End If
            If offset > 0 Then
                If debug Then
                    MsgBox("
seeking to " & offset)
                End If
                Dim npos As Long = output.Seek(offset, SeekOrigin.Begin)
                MsgBox("
new pos=" & npos)
            End If
        End If
        sendCommand("
RETR " & remFileName)
        If Not (retValue = 150 OrElse retValue = 125) Then
            Throw New IOException(reply.Substring(4))
        End If
        While True
            bytes = cSocket.Receive(buffer, buffer.Length, 0)
            output.Write(buffer, 0, bytes)
            If bytes <= 0 Then
                Exit While
            End If
        End While
        output.Close()
        If cSocket.Connected Then
            cSocket.Close()
        End If
        MsgBox("
Downloading file " & remFileName & " Done ")
        readReply()
        If Not (retValue = 226 OrElse retValue = 250) Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Upload a file.
    '''
    '''
    Public Sub upload(ByVal fileName As String)
        upload(fileName, False)
    End Sub
    '''
    ''' Upload a file and set the resume flag.
    '''
    '''
    '''
    Public Sub upload(ByVal fileName As String, ByVal [resume] As Boolean)
        If Not logined Then
            login()
        End If
        Dim cSocket As Socket = createDataSocket()
        Dim offset As Long = 0
        If [resume] Then
            Try
                setBinaryMode(True)
                offset = getFileSize(fileName)
            Catch generatedExceptionName As Exception
                offset = 0
            End Try
        End If
        If offset > 0 Then
            sendCommand("
REST " & offset)
            If retValue <> 350 Then
                'throw new IOException(reply.Substring(4));
                'Remote server may not support resuming.
                offset = 0
            End If
        End If
        sendCommand("
STOR " & Path.GetFileName(fileName))
        If Not (retValue = 125 OrElse retValue = 150) Then
            Throw New IOException(reply.Substring(4))
        End If
        ' open input stream to read source file
        Dim input As New FileStream(fileName, FileMode.Open)
        If offset <> 0 Then
            If debug Then
                MsgBox("
seeking to " & offset)
            End If
            input.Seek(offset, SeekOrigin.Begin)
        End If
        MsgBox(("
Uploading file " & fileName & " to ") + remotePath)
        While (InlineAssignHelper(bytes, input.Read(buffer, 0, buffer.Length))) > 0
            cSocket.Send(buffer, bytes, 0)
        End While
        input.Close()
        MsgBox("
upload Done !")
        If cSocket.Connected Then
            cSocket.Close()
        End If
        readReply()
        If Not (retValue = 226 OrElse retValue = 250) Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Delete a file from the remote FTP server.
    '''
    '''
    Public Sub deleteRemoteFile(ByVal fileName As String)
        If Not logined Then
            login()
        End If
        sendCommand("
DELE " & fileName)
        If retValue <> 250 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Rename a file on the remote FTP server.
    '''
    '''
    '''
    Public Sub renameRemoteFile(ByVal oldFileName As String, ByVal newFileName As String)
        If Not logined Then
            login()
        End If
        sendCommand("
RNFR " & oldFileName)
        If retValue <> 350 Then
            Throw New IOException(reply.Substring(4))
        End If
        ' known problem
        ' rnto will not take care of existing file.
        ' i.e. It will overwrite if newFileName exist
        sendCommand("
RNTO " & newFileName)
        If retValue <> 250 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Create a directory on the remote FTP server.
    '''
    '''
    Public Sub mkdir(ByVal dirName As String)
        If Not logined Then
            login()
        End If
        sendCommand("
MKD " & dirName)
        If retValue > 400 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Delete a directory on the remote FTP server.
    '''
    '''
    Public Sub rmdir(ByVal dirName As String)
        If Not logined Then
            login()
        End If
        sendCommand("
RMD " & dirName)
        If retValue <> 250 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Change the current working directory on the remote FTP server.
    '''
    '''
    Public Sub chdir(ByVal dirName As String)
        If dirName.Equals("
.") Then
            Exit Sub
        End If
        If Not logined Then
            login()
        End If
        sendCommand("
CWD " & dirName)
        If retValue <> 250 Then
            Throw New IOException(reply.Substring(4))
        End If
        Me.remotePath = dirName
        MsgBox("
Current directory is " & remotePath)
    End Sub
    '''
    ''' Close the FTP connection.
    '''
    Public Sub close()
        If clientSocket IsNot Nothing Then
            sendCommand("
QUIT")
        End If
        cleanup()
        MsgBox("
Closing...")
    End Sub
    '''
    ''' Set debug mode.
    '''
    '''
    Public Sub setDebug(ByVal debug As Boolean)
        Me.debug = debug
    End Sub
    Private Sub readReply()
        mes = ""
        reply = readLine()
        retValue = Int32.Parse(reply.Substring(0, 3))
    End Sub
    Private Sub cleanup()
        If clientSocket IsNot Nothing Then
            clientSocket.Close()
            clientSocket = Nothing
        End If
        logined = False
    End Sub
    Private Function readLine() As String
        While True
            bytes = clientSocket.Receive(buffer, buffer.Length, 0)
            mes += ASCII.GetString(buffer, 0, bytes)
            If bytes < buffer.Length Then
                Exit While
            End If
        End While
        Dim seperator As Char() = {ControlChars.Lf}
        Dim mess As String() = mes.Split(seperator)
        If mes.Length > 2 Then
            mes = mess(mess.Length - 2)
        Else
            mes = mess(0)
        End If
        If Not mes.Substring(3, 1).Equals(" ") Then
            Return readLine()
        End If
        If debug Then
            For k As Integer = 0 To mess.Length - 2
                MsgBox(mess(k))
            Next
        End If
        Return mes
    End Function
    Private Sub sendCommand(ByVal command As String)
        Dim cmdBytes As Byte() = Encoding.ASCII.GetBytes((command & vbCr & vbLf).ToCharArray())
        clientSocket.Send(cmdBytes, cmdBytes.Length, 0)
        readReply()
    End Sub
    Private Function createDataSocket() As Socket
        sendCommand("
PASV")
        If retValue <> 227 Then
            Throw New IOException(reply.Substring(4))
        End If
        Dim index1 As Integer = reply.IndexOf("
("c)
        Dim index2 As Integer = reply.IndexOf("
)"c)
        Dim ipData As String = reply.Substring(index1 + 1, index2 - index1 - 1)
        Dim parts As Integer() = New Integer(5) {}
        Dim len As Integer = ipData.Length
        Dim partCount As Integer = -1
        Dim buf As String = ""
        Dim i As Integer = 0
        While i < len AndAlso partCount <= 6
            Dim ch As Char = [Char].Parse(ipData.Substring(i, 1))
            If [Char].IsDigit(ch) Then
                buf += ch
            ElseIf ch <> "
,"c Then
                Throw New IOException("
Malformed PASV reply" & reply)
            End If
            If ch = "
,"c OrElse i + 1 = len Then
                Try
                    parts(System.Math.Max(System.Threading.Interlocked.Increment(partCount), partCount - 1)) = Int32.Parse(buf)
                    buf = ""
                Catch generatedExceptionName As Exception
                    Throw New IOException("
Malformed PASV reply" & reply)
                End Try
            End If
            i += 1
        End While
        Dim ipAddress As String = (((CStr(parts(0)) & "
.") + CStr(parts(1)) & ".") + CStr(parts(2)) & ".") + CStr(parts(3))
        Dim port As Integer = (parts(4) << 8) + parts(5)
        Dim s As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
        Dim ep As New IPEndPoint(Dns.Resolve(ipAddress).AddressList(0), port)
        Try
            s.Connect(ep)
        Catch generatedExceptionName As Exception
            Throw New IOException("
Can't connect to remote server")
        End Try
        Return s
    End Function
    Private Shared Function InlineAssignHelper(Of T)(ByRef target As T, ByVal value As T) As T
        target = value
        Return value
    End Function
End Class 
الرد }}}
#5
(18-11-19, 08:49 PM)asemshahen5 كتب : بسم الله الرحمن الرحيم .

اولا ندخل الى الصفحة التالية : FTP using VB.NET ننسخ كود الكلاس ثم نبدء مشروع جديد في فيجوال بيزك .

نقوم باضافة كلاس جديدة باسم : FTPClass و نلصق الكود بداخله .



ونعمل ريبلد للبرنامج ثم نذهب الى الفورم و نضيف زر جديد اسمه : BtnDelete 

نفتح نافذة الكود الخاص بالفورم و نضيف الكود التالي في قسم التصريحات :

PHP كود :
Dim ftp As New FTPClass 

ثم نقوم بالضضغط الزدوج على زر الحذف و نكتب في نافذة الكود :

PHP كود :
       ftp.setDebug(True)
 
       ftp.setRemoteHost("192.168.1.000")
 
       ftp.setRemoteUser("user")
 
       ftp.setRemotePass("123456")
 
       ftp.setRemotePath("Root/")
 
       ftp.setRemotePort(21)
 
       ftp.login()
 
       ftp.chdir("Test")
 
       ftp.rmdir("Test"

طبعا غير رقم الايبي و اسم الامستخدم و كلمة المرور و باقي المعلومات بما يتناسب معك .

كود الكلاس :

PHP كود :
Imports System
Imports System
.Net
Imports System
.IO
Imports System
.Text
Imports System
.Net.Sockets

Public Class FTPClass
    
'-------------------------------------------------------------------------------------------------------------
    '
This library will enable you to do few important actions such as:
 
   '1 - Connect to FTP server (for sure!)
    '
upload file
    
'3 - download file
    '
delete remote file
    
'4 - create remote folder
    '
delete remote folder
    
'6 - rename remote folder
    '
- list down all the files in the remote path
    
'8 - get remote file size
    '
-------------------------------------------------------------------------------------------------------------
 
   Private remoteHost As StringremotePath As StringremoteUser As StringremotePass As Stringmes As String
    Private remotePort 
As Integerbytes As Integer
    Private clientSocket 
As Socket
    Private retValue 
As Integer
    Private debug 
As Boolean
    Private logined 
As Boolean
    Private reply 
As String
    Private Shared BLOCK_SIZE 
As Integer 512
    Private buffer 
As Byte() = New Byte(BLOCK_SIZE 1) {}
 
   Private ASCII As Encoding Encoding.ASCII
    Public Sub 
New()
 
       remoteHost "192.168.X.XX" 'Please specify correct IP
        remotePath = "."
        remoteUser = "username"
        remotePass = "password"
        remotePort = 21
        debug = False
        logined = False
    End Sub
    '''
 
   ''' Set the name of the FTP server to connect to.
    '''
 
   ''' Server name
    Public Sub setRemoteHost(ByVal remoteHost As String)
        Me.remoteHost = remoteHost
    End Sub
    '''
 
   ''' Return the name of the current FTP server.
    '''
 
   ''' Server name
    Public Function getRemoteHost() As String
        Return remoteHost
    End Function
    '''
 
   ''' Set the port number to use for FTP.
    '''
 
   ''' Port number
    Public Sub setRemotePort(ByVal remotePort As Integer)
        Me.remotePort = remotePort
    End Sub
    '''
 
   ''' Return the current port number.
    '''
 
   ''' Current port number
    Public Function getRemotePort() As Integer
        Return remotePort
    End Function
    '''
 
   ''' Set the remote directory path.
    '''
 
   ''' The remote directory path
    Public Sub setRemotePath(ByVal remotePath As String)
        Me.remotePath = remotePath
    End Sub
    '''
 
   ''' Return the current remote directory path.
    '''
 
   ''' The current remote directory path.
    Public Function getRemotePath() As String
        Return remotePath
    End Function
    '''
 
   ''' Set the user name to use for logging into the remote server.
    '''
 
   ''' Username
    Public Sub setRemoteUser(ByVal remoteUser As String)
        Me.remoteUser = remoteUser
    End Sub
    '''
 
   ''' Set the password to user for logging into the remote server.
    '''
 
   ''' Password
    Public Sub setRemotePass(ByVal remotePass As String)
        Me.remotePass = remotePass
    End Sub
    '''
 
   ''' Return a string array containing the remote directory's file list.
 
   '''
    '''
 
   '''
    Public Function getFileList(ByVal mask As String) As String()
        If Not logined Then
            login()
        End If
        Dim cSocket As Socket = createDataSocket()
        sendCommand("NLST " & mask)
        If Not (retValue = 150 OrElse retValue = 125) Then
            Throw New IOException(reply.Substring(4))
        End If
        mes = ""
        While True
            Dim bytes As Integer = cSocket.Receive(buffer, buffer.Length, 0)
            mes += ASCII.GetString(buffer, 0, bytes)
            If bytes < buffer.Length Then
                Exit While
            End If
        End While
        Dim seperator As Char() = {ControlChars.Lf}
        Dim mess As String() = mes.Split(seperator)
        cSocket.Close()
        readReply()
        If retValue <> 226 Then
            Throw New IOException(reply.Substring(4))
        End If
        Return mess
    End Function
    '''
 
   ''' Return the size of a file.
    '''
 
   '''
    '''
 
   Public Function getFileSize(ByVal fileName As String) As Long
        If Not logined Then
            login
()
 
       End If
 
       sendCommand("SIZE " fileName)
 
       Dim size As Long 0
        If retValue 
213 Then
            size 
Int64.Parse(reply.Substring(4))
 
       Else
            Throw 
New IOException(reply.Substring(4))
 
       End If
 
       Return size
    End 
Function
 
   '''
    ''' 
Login to the remote server.
 
   '''
    Public Sub login()
        clientSocket = New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
        Dim ep As New IPEndPoint(Dns.Resolve(remoteHost).AddressList(0), remotePort)
        Try
            clientSocket.Connect(ep)
        Catch generatedExceptionName As Exception
            Throw New IOException("Couldn'
t connect to remote server")
        End Try
        readReply()
        If retValue <> 220 Then
            close()
            Throw New IOException(reply.Substring(4))
        End If
        If debug Then
            MsgBox("
USER " & remoteUser)
        End If
        sendCommand("
USER " & remoteUser)
        If Not (retValue = 331 OrElse retValue = 230) Then
            cleanup()
            Throw New IOException(reply.Substring(4))
        End If
        If retValue <> 230 Then
            If debug Then
                MsgBox("
PASS xxx")
            End If
            sendCommand("
PASS " & remotePass)
            If Not (retValue = 230 OrElse retValue = 202) Then
                cleanup()
                Throw New IOException(reply.Substring(4))
            End If
        End If
        logined = True
        MsgBox("
Connected to " & remoteHost)
        chdir(remotePath)
    End Sub
    '''
    ''' If the value of mode is true, set binary mode for downloads.
    ''' Else, set Ascii mode.
    '''
    '''
    Public Sub setBinaryMode(ByVal mode As Boolean)
        If mode Then
            sendCommand("
TYPE I")
        Else
            sendCommand("
TYPE A")
        End If
        If retValue <> 200 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Download a file to the Assembly's local directory,
    ''' keeping the same file name.
    '''
    '''
    Public Sub download(ByVal remFileName As String)
        download(remFileName, "", False)
    End Sub
    '''
    ''' Download a remote file to the Assembly's local directory,
    ''' keeping the same file name, and set the resume flag.
    '''
    '''
    '''
    Public Sub download(ByVal remFileName As String, ByVal [resume] As Boolean)
        download(remFileName, "", [resume])
    End Sub
    '''
    ''' Download a remote file to a local file name which can include
    ''' a path. The local file name will be created or overwritten,
    ''' but the path must exist.
    '''
    '''
    '''
    Public Sub download(ByVal remFileName As String, ByVal locFileName As String)
        download(remFileName, locFileName, False)
    End Sub
    '''
    ''' Download a remote file to a local file name which can include
    ''' a path, and set the resume flag. The local file name will be
    ''' created or overwritten, but the path must exist.
    '''
    '''
    '''
    '''
    Public Sub download(ByVal remFileName As String, ByVal locFileName As String, ByVal [resume] As Boolean)
        If Not logined Then
            login()
        End If
        setBinaryMode(True)
        MsgBox((("
Downloading file " & remFileName & " from ") + remoteHost & "/") + remotePath)
        If locFileName.Equals("") Then
            locFileName = remFileName
        End If
        If Not File.Exists(locFileName) Then
            Dim st As Stream = File.Create(locFileName)
            st.Close()
        End If
        Dim output As New FileStream(locFileName, FileMode.Open)
        Dim cSocket As Socket = createDataSocket()
        Dim offset As Long = 0
        If [resume] Then
            offset = output.Length
            If offset > 0 Then
                sendCommand("
REST " & offset)
                If retValue <> 350 Then
                    'throw new IOException(reply.Substring(4));
                    'Some servers may not support resuming.
                    offset = 0
                End If
            End If
            If offset > 0 Then
                If debug Then
                    MsgBox("
seeking to " & offset)
                End If
                Dim npos As Long = output.Seek(offset, SeekOrigin.Begin)
                MsgBox("
new pos=" & npos)
            End If
        End If
        sendCommand("
RETR " & remFileName)
        If Not (retValue = 150 OrElse retValue = 125) Then
            Throw New IOException(reply.Substring(4))
        End If
        While True
            bytes = cSocket.Receive(buffer, buffer.Length, 0)
            output.Write(buffer, 0, bytes)
            If bytes <= 0 Then
                Exit While
            End If
        End While
        output.Close()
        If cSocket.Connected Then
            cSocket.Close()
        End If
        MsgBox("
Downloading file " & remFileName & " Done ")
        readReply()
        If Not (retValue = 226 OrElse retValue = 250) Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Upload a file.
    '''
    '''
    Public Sub upload(ByVal fileName As String)
        upload(fileName, False)
    End Sub
    '''
    ''' Upload a file and set the resume flag.
    '''
    '''
    '''
    Public Sub upload(ByVal fileName As String, ByVal [resume] As Boolean)
        If Not logined Then
            login()
        End If
        Dim cSocket As Socket = createDataSocket()
        Dim offset As Long = 0
        If [resume] Then
            Try
                setBinaryMode(True)
                offset = getFileSize(fileName)
            Catch generatedExceptionName As Exception
                offset = 0
            End Try
        End If
        If offset > 0 Then
            sendCommand("
REST " & offset)
            If retValue <> 350 Then
                'throw new IOException(reply.Substring(4));
                'Remote server may not support resuming.
                offset = 0
            End If
        End If
        sendCommand("
STOR " & Path.GetFileName(fileName))
        If Not (retValue = 125 OrElse retValue = 150) Then
            Throw New IOException(reply.Substring(4))
        End If
        ' open input stream to read source file
        Dim input As New FileStream(fileName, FileMode.Open)
        If offset <> 0 Then
            If debug Then
                MsgBox("
seeking to " & offset)
            End If
            input.Seek(offset, SeekOrigin.Begin)
        End If
        MsgBox(("
Uploading file " & fileName & " to ") + remotePath)
        While (InlineAssignHelper(bytes, input.Read(buffer, 0, buffer.Length))) > 0
            cSocket.Send(buffer, bytes, 0)
        End While
        input.Close()
        MsgBox("
upload Done !")
        If cSocket.Connected Then
            cSocket.Close()
        End If
        readReply()
        If Not (retValue = 226 OrElse retValue = 250) Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Delete a file from the remote FTP server.
    '''
    '''
    Public Sub deleteRemoteFile(ByVal fileName As String)
        If Not logined Then
            login()
        End If
        sendCommand("
DELE " & fileName)
        If retValue <> 250 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Rename a file on the remote FTP server.
    '''
    '''
    '''
    Public Sub renameRemoteFile(ByVal oldFileName As String, ByVal newFileName As String)
        If Not logined Then
            login()
        End If
        sendCommand("
RNFR " & oldFileName)
        If retValue <> 350 Then
            Throw New IOException(reply.Substring(4))
        End If
        ' known problem
        ' rnto will not take care of existing file.
        ' i.e. It will overwrite if newFileName exist
        sendCommand("
RNTO " & newFileName)
        If retValue <> 250 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Create a directory on the remote FTP server.
    '''
    '''
    Public Sub mkdir(ByVal dirName As String)
        If Not logined Then
            login()
        End If
        sendCommand("
MKD " & dirName)
        If retValue > 400 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Delete a directory on the remote FTP server.
    '''
    '''
    Public Sub rmdir(ByVal dirName As String)
        If Not logined Then
            login()
        End If
        sendCommand("
RMD " & dirName)
        If retValue <> 250 Then
            Throw New IOException(reply.Substring(4))
        End If
    End Sub
    '''
    ''' Change the current working directory on the remote FTP server.
    '''
    '''
    Public Sub chdir(ByVal dirName As String)
        If dirName.Equals("
.") Then
            Exit Sub
        End If
        If Not logined Then
            login()
        End If
        sendCommand("
CWD " & dirName)
        If retValue <> 250 Then
            Throw New IOException(reply.Substring(4))
        End If
        Me.remotePath = dirName
        MsgBox("
Current directory is " & remotePath)
    End Sub
    '''
    ''' Close the FTP connection.
    '''
    Public Sub close()
        If clientSocket IsNot Nothing Then
            sendCommand("
QUIT")
        End If
        cleanup()
        MsgBox("
Closing...")
    End Sub
    '''
    ''' Set debug mode.
    '''
    '''
    Public Sub setDebug(ByVal debug As Boolean)
        Me.debug = debug
    End Sub
    Private Sub readReply()
        mes = ""
        reply = readLine()
        retValue = Int32.Parse(reply.Substring(0, 3))
    End Sub
    Private Sub cleanup()
        If clientSocket IsNot Nothing Then
            clientSocket.Close()
            clientSocket = Nothing
        End If
        logined = False
    End Sub
    Private Function readLine() As String
        While True
            bytes = clientSocket.Receive(buffer, buffer.Length, 0)
            mes += ASCII.GetString(buffer, 0, bytes)
            If bytes < buffer.Length Then
                Exit While
            End If
        End While
        Dim seperator As Char() = {ControlChars.Lf}
        Dim mess As String() = mes.Split(seperator)
        If mes.Length > 2 Then
            mes = mess(mess.Length - 2)
        Else
            mes = mess(0)
        End If
        If Not mes.Substring(3, 1).Equals(" ") Then
            Return readLine()
        End If
        If debug Then
            For k As Integer = 0 To mess.Length - 2
                MsgBox(mess(k))
            Next
        End If
        Return mes
    End Function
    Private Sub sendCommand(ByVal command As String)
        Dim cmdBytes As Byte() = Encoding.ASCII.GetBytes((command & vbCr & vbLf).ToCharArray())
        clientSocket.Send(cmdBytes, cmdBytes.Length, 0)
        readReply()
    End Sub
    Private Function createDataSocket() As Socket
        sendCommand("
PASV")
        If retValue <> 227 Then
            Throw New IOException(reply.Substring(4))
        End If
        Dim index1 As Integer = reply.IndexOf("
("c)
        Dim index2 As Integer = reply.IndexOf("
)"c)
        Dim ipData As String = reply.Substring(index1 + 1, index2 - index1 - 1)
        Dim parts As Integer() = New Integer(5) {}
        Dim len As Integer = ipData.Length
        Dim partCount As Integer = -1
        Dim buf As String = ""
        Dim i As Integer = 0
        While i < len AndAlso partCount <= 6
            Dim ch As Char = [Char].Parse(ipData.Substring(i, 1))
            If [Char].IsDigit(ch) Then
                buf += ch
            ElseIf ch <> "
,"c Then
                Throw New IOException("
Malformed PASV reply" & reply)
            End If
            If ch = "
,"c OrElse i + 1 = len Then
                Try
                    parts(System.Math.Max(System.Threading.Interlocked.Increment(partCount), partCount - 1)) = Int32.Parse(buf)
                    buf = ""
                Catch generatedExceptionName As Exception
                    Throw New IOException("
Malformed PASV reply" & reply)
                End Try
            End If
            i += 1
        End While
        Dim ipAddress As String = (((CStr(parts(0)) & "
.") + CStr(parts(1)) & ".") + CStr(parts(2)) & ".") + CStr(parts(3))
        Dim port As Integer = (parts(4) << 8) + parts(5)
        Dim s As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
        Dim ep As New IPEndPoint(Dns.Resolve(ipAddress).AddressList(0), port)
        Try
            s.Connect(ep)
        Catch generatedExceptionName As Exception
            Throw New IOException("
Can't connect to remote server")
        End Try
        Return s
    End Function
    Private Shared Function InlineAssignHelper(Of T)(ByRef target As T, ByVal value As T) As T
        target = value
        Return value
    End Function
End Class 
شكرا يعطيك الله العافية
شكرا شكرا شكرا شكرا شكرا شكرا شكرا شكرا

(❁´◡`❁)
والله ماني مصدق الله يوفقك شكرا ,,,,,,,,,, 

الرد }}}


المواضيع المحتمل أن تكون متشابهة .
الموضوع : الكاتب الردود : المشاهدات : آخر رد
  هل من الممكن العمل على قاعدة بيانات اكسل على الفيجوال بيسك خالد كامل1 4 80 24-03-24, 02:00 AM
آخر رد: خالد كامل1
  السلام عليكم رشاد حبيب 2 200 12-03-24, 02:43 PM
آخر رد: رشاد حبيب
  انشاء قاعدة بيانات من ملف سكربت strongriseman 5 500 17-02-24, 02:57 PM
آخر رد: strongriseman
  سؤال عن عملية حذف سجل من قاعدة البيانات assuhimi 3 249 11-02-24, 08:43 PM
آخر رد: assuhimi
  فلترة datagridview بدون قاعدة بيانات صالح عبدالله 3 295 02-02-24, 04:07 PM
آخر رد: صالح عبدالله
Photo [كود] مطلوب كود يستخدم الأوامر فقط لتحديث قاعدة بيانات بـ vb.net AhmedEissa 4 638 18-01-24, 11:40 PM
آخر رد: العتيق
  [VB.NET] إعادة استدعاء البيانات من قاعدة بيانات اكسس والاهم الصورة مبرمج صغير 1 1 273 13-01-24, 01:17 PM
آخر رد: مبرمج صغير 1
  سؤال بسيط يا احبتى فى الله خالد كامل1 4 314 07-01-24, 12:55 AM
آخر رد: Mujahef
  [VB.NET] إضافة أو حذف حقل فى قاعدة بيانات باستخدام كود VB.net AmeenRashed 21 1,198 30-12-23, 03:47 PM
آخر رد: Taha Okla
  السلام عليكم رشاد حبيب 3 304 27-12-23, 01:25 PM
آخر رد: رشاد حبيب

التنقل السريع :


يقوم بقرائة الموضوع: بالاضافة الى ( 1 ) ضيف كريم