elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Curso de javascript por TickTack


+  Foro de elhacker.net
|-+  Programación
| |-+  Programación General
| | |-+  .NET (C#, VB.NET, ASP) (Moderador: kub0x)
| | | |-+  [AYUDA]SubiR ArchivoS PoR FTP
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: [AYUDA]SubiR ArchivoS PoR FTP  (Leído 4,127 veces)
agustin_v8

Desconectado Desconectado

Mensajes: 23


AguSv8


Ver Perfil
[AYUDA]SubiR ArchivoS PoR FTP
« en: 30 Agosto 2009, 22:51 pm »

Hola se me ocurrio en mi web para hacer mas rapido crear un archivo en visual basic que suba los archivos con tan solo ejecutarlo o apretar un boton, asi puedo actualizar mi web con las ultimas novedades mas rapidamente...

Y me preguntaba cual es el codigo que debo usar para subir archivos via FTP, pero no subir asi:

Citar
My.Computer.Ne twork.UploadFile ("C:\archivoParaSubir", "http://ftp://ejemplo.com", "usuario1", "contraseña")

No especificando una ruta, sino que suba todos los archivos que usen por ejemplo .php en la pc o en un disco local o si es posible en todos los discos locales existentes.
o sea que al ejecutarlo suba al servidor indicado todos los archivos en el formato indicado al apretar un boton.

Citar
Private Sub Command1_Click()

End Sub.

Saludos y gracias...


« Última modificación: 30 Agosto 2009, 23:18 pm por agustin_v8 » En línea

.:::::::::. AguSv8 .:::::::::.
 
Aguante v8!
SRVAM

Desconectado Desconectado

Mensajes: 130


Ver Perfil
Re: [AYUDA]SubiR ArchivoS PoR FTP
« Respuesta #1 en: 31 Agosto 2009, 00:14 am »

pues deberias usar la API wininet para poder hacerlo. saludos


En línea

C# Programmer

-Estudiante MCTS .NET Framework 3.5-
BlackZeroX
Wiki

Desconectado Desconectado

Mensajes: 3.158


I'Love...!¡.


Ver Perfil WWW
Re: [AYUDA]SubiR ArchivoS PoR FTP
« Respuesta #2 en: 31 Agosto 2009, 00:39 am »

Sirve para subir, Renombrarlo en el servidor FTP y bajarlo nuevamente, aqui esta el codigo.

Codogo sacado de AllApi.Mentalis.net

Código
  1. Const FTP_TRANSFER_TYPE_UNKNOWN = &H0
  2. Const FTP_TRANSFER_TYPE_ASCII = &H1
  3. Const FTP_TRANSFER_TYPE_BINARY = &H2
  4. Const INTERNET_DEFAULT_FTP_PORT = 21               ' default for FTP servers
  5. Const INTERNET_SERVICE_FTP = 1
  6. Const INTERNET_FLAG_PASSIVE = &H8000000            ' used for FTP connections
  7. Const INTERNET_OPEN_TYPE_PRECONFIG = 0                    ' use registry configuration
  8. Const INTERNET_OPEN_TYPE_DIRECT = 1                        ' direct to net
  9. Const INTERNET_OPEN_TYPE_PROXY = 3                         ' via named proxy
  10. Const INTERNET_OPEN_TYPE_PRECONFIG_WITH_NO_AUTOPROXY = 4   ' prevent using java/script/INS
  11. Const MAX_PATH = 260
  12. Private Type FILETIME
  13.    dwLowDateTime As Long
  14.    dwHighDateTime As Long
  15. End Type
  16. Private Type WIN32_FIND_DATA
  17.    dwFileAttributes As Long
  18.    ftCreationTime As FILETIME
  19.    ftLastAccessTime As FILETIME
  20.    ftLastWriteTime As FILETIME
  21.    nFileSizeHigh As Long
  22.    nFileSizeLow As Long
  23.    dwReserved0 As Long
  24.    dwReserved1 As Long
  25.    cFileName As String * MAX_PATH
  26.    cAlternate As String * 14
  27. End Type
  28. Private Declare Function InternetCloseHandle Lib "wininet" (ByRef hInet As Long) As Long
  29. Private Declare Function InternetConnect Lib "wininet.dll" Alias "InternetConnectA" (ByVal hInternetSession As Long, ByVal sServerName As String, ByVal nServerPort As Integer, ByVal sUserName As String, ByVal sPassword As String, ByVal lService As Long, ByVal lFlags As Long, ByVal lContext As Long) As Long
  30. Private Declare Function InternetOpen Lib "wininet.dll" Alias "InternetOpenA" (ByVal sAgent As String, ByVal lAccessType As Long, ByVal sProxyName As String, ByVal sProxyBypass As String, ByVal lFlags As Long) As Long
  31. Private Declare Function FtpSetCurrentDirectory Lib "wininet.dll" Alias "FtpSetCurrentDirectoryA" (ByVal hFtpSession As Long, ByVal lpszDirectory As String) As Boolean
  32. Private Declare Function FtpGetCurrentDirectory Lib "wininet.dll" Alias "FtpGetCurrentDirectoryA" (ByVal hFtpSession As Long, ByVal lpszCurrentDirectory As String, lpdwCurrentDirectory As Long) As Long
  33. Private Declare Function FtpCreateDirectory Lib "wininet.dll" Alias "FtpCreateDirectoryA" (ByVal hFtpSession As Long, ByVal lpszDirectory As String) As Boolean
  34. Private Declare Function FtpRemoveDirectory Lib "wininet.dll" Alias "FtpRemoveDirectoryA" (ByVal hFtpSession As Long, ByVal lpszDirectory As String) As Boolean
  35. Private Declare Function FtpDeleteFile Lib "wininet.dll" Alias "FtpDeleteFileA" (ByVal hFtpSession As Long, ByVal lpszFileName As String) As Boolean
  36. Private Declare Function FtpRenameFile Lib "wininet.dll" Alias "FtpRenameFileA" (ByVal hFtpSession As Long, ByVal lpszExisting As String, ByVal lpszNew As String) As Boolean
  37. Private Declare Function FtpGetFile Lib "wininet.dll" Alias "FtpGetFileA" (ByVal hConnect As Long, ByVal lpszRemoteFile As String, ByVal lpszNewFile As String, ByVal fFailIfExists As Long, ByVal dwFlagsAndAttributes As Long, ByVal dwFlags As Long, ByRef dwContext As Long) As Boolean
  38. Private Declare Function FtpPutFile Lib "wininet.dll" Alias "FtpPutFileA" (ByVal hConnect As Long, ByVal lpszLocalFile As String, ByVal lpszNewRemoteFile As String, ByVal dwFlags As Long, ByVal dwContext As Long) As Boolean
  39. Private Declare Function InternetGetLastResponseInfo Lib "wininet.dll" Alias "InternetGetLastResponseInfoA" (lpdwError As Long, ByVal lpszBuffer As String, lpdwBufferLength As Long) As Boolean
  40. Private Declare Function FtpFindFirstFile Lib "wininet.dll" Alias "FtpFindFirstFileA" (ByVal hFtpSession As Long, ByVal lpszSearchFile As String, lpFindFileData As WIN32_FIND_DATA, ByVal dwFlags As Long, ByVal dwContent As Long) As Long
  41. Private Declare Function InternetFindNextFile Lib "wininet.dll" Alias "InternetFindNextFileA" (ByVal hFind As Long, lpvFindData As WIN32_FIND_DATA) As Long
  42. Const PassiveConnection As Boolean = True
  43. Private Sub Form_Load()
  44.    'KPD-Team 2000
  45.    'URL: http://www.allapi.net
  46.    'E-Mail: KPDTeam@allapi.net
  47.    Dim hConnection As Long, hOpen As Long, sOrgPath  As String
  48.    'open an internet connection
  49.    hOpen = InternetOpen("API-Guide sample program", INTERNET_OPEN_TYPE_PRECONFIG, vbNullString, vbNullString, 0)
  50.    'connect to the FTP server
  51.    hConnection = InternetConnect(hOpen, "your ftp server", INTERNET_DEFAULT_FTP_PORT, "your login", "your password", INTERNET_SERVICE_FTP, IIf(PassiveConnection, INTERNET_FLAG_PASSIVE, 0), 0)
  52.    'create a buffer to store the original directory
  53.    sOrgPath = String(MAX_PATH, 0)
  54.    'get the directory
  55.    FtpGetCurrentDirectory hConnection, sOrgPath, Len(sOrgPath)
  56.    'create a new directory 'testing'
  57.    FtpCreateDirectory hConnection, "testing"
  58.    'set the current directory to 'root/testing'
  59.    FtpSetCurrentDirectory hConnection, "testing"
  60.    'upload the file 'test.htm'
  61.    FtpPutFile hConnection, "C:\test.htm", "test.htm", FTP_TRANSFER_TYPE_UNKNOWN, 0
  62.    'rename 'test.htm' to 'apiguide.htm'
  63.    FtpRenameFile hConnection, "test.htm", "apiguide.htm"
  64.    'enumerate the file list from the current directory ('root/testing')
  65.    EnumFiles hConnection
  66.    'retrieve the file from the FTP server
  67.    FtpGetFile hConnection, "apiguide.htm", "c:\apiguide.htm", False, 0, FTP_TRANSFER_TYPE_UNKNOWN, 0
  68.    'delete the file from the FTP server
  69.    FtpDeleteFile hConnection, "apiguide.htm"
  70.    'set the current directory back to the root
  71.    FtpSetCurrentDirectory hConnection, sOrgPath
  72.    'remove the direcrtory 'testing'
  73.    FtpRemoveDirectory hConnection, "testing"
  74.    'close the FTP connection
  75.    InternetCloseHandle hConnection
  76.    'close the internet connection
  77.    InternetCloseHandle hOpen
  78. End Sub
  79. Public Sub EnumFiles(hConnection As Long)
  80.    Dim pData As WIN32_FIND_DATA, hFind As Long, lRet As Long
  81.    'set the graphics mode to persistent
  82.    Me.AutoRedraw = True
  83.    'create a buffer
  84.    pData.cFileName = String(MAX_PATH, 0)
  85.    'find the first file
  86.    hFind = FtpFindFirstFile(hConnection, "*.*", pData, 0, 0)
  87.    'if there's no file, then exit sub
  88.    If hFind = 0 Then Exit Sub
  89.    'show the filename
  90.    Me.Print Left(pData.cFileName, InStr(1, pData.cFileName, String(1, 0), vbBinaryCompare) - 1)
  91.    Do
  92.        'create a buffer
  93.        pData.cFileName = String(MAX_PATH, 0)
  94.        'find the next file
  95.        lRet = InternetFindNextFile(hFind, pData)
  96.        'if there's no next file, exit do
  97.        If lRet = 0 Then Exit Do
  98.        'show the filename
  99.        Me.Print Left(pData.cFileName, InStr(1, pData.cFileName, String(1, 0), vbBinaryCompare) - 1)
  100.    Loop
  101.    'close the search handle
  102.    InternetCloseHandle hFind
  103. End Sub
  104. Sub ShowError()
  105.    Dim lErr As Long, sErr As String, lenBuf As Long
  106.    'get the required buffer size
  107.    InternetGetLastResponseInfo lErr, sErr, lenBuf
  108.    'create a buffer
  109.    sErr = String(lenBuf, 0)
  110.    'retrieve the last respons info
  111.    InternetGetLastResponseInfo lErr, sErr, lenBuf
  112.    'show the last response info
  113.    MsgBox "Error " + CStr(lErr) + ": " + sErr, vbOKOnly + vbCritical
  114. End Sub
  115.  
  116.  

Dulces Lunas!¡.
« Última modificación: 31 Agosto 2009, 00:42 am por BlackZeroX » En línea

The Dark Shadow is my passion.
raul338


Desconectado Desconectado

Mensajes: 2.633


La sonrisa es la mejor forma de afrontar las cosas


Ver Perfil WWW
Re: [AYUDA]SubiR ArchivoS PoR FTP
« Respuesta #3 en: 31 Agosto 2009, 01:31 am »

Hola se me ocurrio en mi web para hacer mas rapido crear un archivo en visual basic que suba los archivos con tan solo ejecutarlo o apretar un boton, asi puedo actualizar mi web con las ultimas novedades mas rapidamente...

Y me preguntaba cual es el codigo que debo usar para subir archivos via FTP, pero no subir asi:

Citar
My.Computer.Ne twork.UploadFile ("C:\archivoParaSubir", "http://ftp://ejemplo.com", "usuario1", "contraseña")

No especificando una ruta, sino que suba todos los archivos que usen por ejemplo .php en la pc o en un disco local o si es posible en todos los discos locales existentes.
o sea que al ejecutarlo suba al servidor indicado todos los archivos en el formato indicado al apretar un boton.

Citar
Private Sub Command1_Click()

End Sub.

Saludos y gracias...

Esa forma de usar el namespace My es de .net 2005, asi que esto debereia moverse a la sección .net

y como es .net hay mil y un ejemplos de subir acá (sobretodo el primero)
En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
ayuda subir varios archivos
PHP
kakashi20 4 4,806 Último mensaje 20 Febrero 2011, 07:54 am
por Castg!
Ayuda: Subir archivos a un ftp desde c#
.NET (C#, VB.NET, ASP)
eventsarg 3 4,735 Último mensaje 10 Septiembre 2012, 09:13 am
por ramonfe
Ayuda con subir archivos a un host via ftp !Urgente!
.NET (C#, VB.NET, ASP)
Brian1511 3 2,261 Último mensaje 28 Octubre 2012, 07:17 am
por spiritdead
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines