ªð¦^¦Cªí ¤W¤@¥DÃD µo©«

[µo°Ý] vba Ū¨ú ftp ¸Ì­±ªºÀɮײM³æ

[µo°Ý] vba Ū¨ú ftp ¸Ì­±ªºÀɮײM³æ

§Ú»Ý­n±`±`¨ì¤½¥qªºftp§ì¨ú¸ê®Æ¦^¨Ó³B²z¡A
©Ò¥H·Q­n§Q¥Îvba¥h¬Ý¬Ý¦³­þ¨ÇÀɮ׬O§ó·s¹Lªº¡A
¦b§ì¦^¨Ó³B²z¡A´N¤£¥Î¨C¤@­Ó¸ê®Æ§¨³£¶i¥h¬Ý¡C

¦ýftp¦³±b¸¹±K½X¡AµLªk¨Ï¥Î¤@¯ëdirªº¤è¦¡¥h´M§ä¡A
ºô¸ô¤W§ä¤£¨ì¬ÛÃöªº¸ê®Æ(¤]¥i¯à¬O§Ú§ä¿ù¤è¦V)¡A
¬O§_¦³«e½ú¥i¥H´£ÂI¤@¤U§Ú¸Ó¦p¦ó°µ¨ì¡A©Î¬O±q­þ­Ó¤è¦V¤U¤â©O?

¦^´_ 2# cody


    ¦nªº¡A§Ú¦b§ä®É¶¡¬ã¨s¬Ý¬Ýftpªºcomment¡AÁÂÁÂ

TOP

¦^´_ 3# Joforn


    ³o¤èªk¥i¦æ¡A·P¿E¤£ºÉ....
   
    ¥t¥~¦b´£°Ý¤@­Ó°ÝÃD¡A¦pªG¸Ì­±ÁÙ¦³¸ê®Æ§¨¡A§Ú¬O±N¥þ³¡¸ê®Æ§¨§ì¥X¨Ó¡A
    ¦b¤@­Ó¤@­Ó¸ê®Æ§¨¶i¥hÀˬd¬O§_¦³·sªºÀɮ׶Ü?
    ©Î¬O¦³¨ä¥L¤è¦¡¥i¦æ?

TOP

¦^´_ 6# Joforn
  1.     Private Function FTPFolder(ByVal Url As String, _
  2.     Optional ByVal UserName As String, _
  3.     Optional ByVal PassWord As String, _
  4.     Optional ByVal Port As Integer) As Object
  5.   Dim objShell  As Object
  6.   
  7.   If Len(Url) Then
  8.     If Len(UserName) Then Url = UserName & ":" & PassWord & "@" & Url
  9.     If Port > 0 Then Url = Url & ":" & Port
  10.     Set objShell = CreateObject("Shell.Application")
  11.     Set FTPFolder = objShell.Namespace("FTP://" & Url)
  12.   End If
  13. End Function

  14. Sub test()
  15.   Dim objFolder As Object
  16.   Dim objItem   As Object
  17.   Dim selectFolder
  18.   
  19.   Set objFolder = FTPFolder("118.163.50.55/firmware_software_version_files/", "xxxxx", "xxxx")
  20.   
  21.   If Not (objFolder Is Nothing) Then
  22.    
  23.     selectFolder = objFolder
  24.    
  25.     Call ¦C¥XÀɮײM³æ(selectFolder)
  26. End If
  27. End Sub

  28. Sub ¦C¥XÀɮײM³æ(ByVal theDir As String)
  29.     Dim pt As Range
  30.                
  31.     Set pt = Sheet1.Range("a2")
  32.     Call ³]©w¼ÐÃD(1)
  33.                
  34.     If Len(Dir(theDir, vbDirectory)) > 0 Then
  35.         If (GetAttr(theDir) And vbDirectory) = vbDirectory Then
  36.             Call FileIOUtility.RetrivalFileList(theDir, pt, 0)
  37.         End If
  38.     End If
  39.    
  40.     pt.Worksheet.Columns("A:B").AutoFit
  41. End Su

  42. Function RetrivalFileList(ByVal strDir As String, ByRef myRange As Range, ByRef depth As Integer)
  43.     Dim thePath As String
  44.     Dim strSdir As String
  45.     Dim theDirs As Scripting.Folders
  46.     Dim theDir As Scripting.Folder
  47.     Dim theFile As Scripting.File
  48.     Dim myFso As Scripting.FileSystemObject
  49.     Dim subFolderCount As Integer
  50.    
  51.     Set myFso = New Scripting.FileSystemObject
  52.     If Right(strDir, 1) <> "" Then strDir = strDir & ""
  53.     thePath = thePath & strDir
  54.         
  55.     '¦C¥X²Ä¤@¼h®Ú¥Ø¿ýªºÀÉ®×
  56.     If depth = 0 Then
  57.             For Each theFile In myFso.GetFolder(strDir).Files
  58.                 myRange = theFile.Path
  59.                 myRange.Next = theFile.Size
  60.                 myRange.Next.Next = theFile.DateLastModified
  61.                 Set myRange = myRange.Offset(1, 0)
  62.             Next
  63.             depth = 1
  64.     End If
  65.         
  66.     '´M§ä©Ò¦³¤l¥Ø¿ýªºÀÉ®×
  67.     Set theDirs = myFso.GetFolder(strDir).SubFolders
  68.     For Each theDir In theDirs
  69.         For Each theFile In theDir.Files
  70.             myRange = theFile.Path
  71.             myRange.Next = theFile.Size
  72.             myRange.Next.Next = theFile.DateLastModified
  73.             Set myRange = myRange.Offset(1, 0)
  74.         Next
  75.         RetrivalFileList strDir:=theDir.Path, myRange:=myRange, depth:=depth
  76.     Next
  77.     Set myFso = Nothing
  78. End Function

  79.   
½Æ»s¥N½X
§Ú±NÀɮ׸ô®|¥áµ¹selectFolder¡A·|¥X°ÝÃD


¦ý¦pªG§Úµ¹selectFolder ªº¸ô®|¬O¹q¸£¥»¾÷ªº«o¥i¥H°õ¦æ¡A


µ¹selectFolder §¹¾ãªºFTP¸ô®|¤]·|¥X¿ù¡A


¬O¦]¬°FTP¬d¸ßªº¤è¦¡¸ò¥»¾÷ªº¤£¤@¼Ë¶Ü??

TOP

¦^´_ 8# Joforn


    µ{¦¡¥i°õ¦æ¡A¦ý¶W¥X§Ú¥\¤O¤Ó¦h¡A»Ý­n®É¶¡ºCºC®ø¤Æ¡AÁÂÁ¡C

TOP

        ÀR«ä¦Û¦b : ªY½à§O¤H´N¬O²øÄY¦Û¤v¡C
ªð¦^¦Cªí ¤W¤@¥DÃD