FTPDirectoryEntryRaw()

Syntax

Entry$ = FTPDirectoryEntryRaw(#Ftp)
Description
Returns the raw line of the current entry in the #Ftp being listed with ExamineFTPDirectory() and NextFTPDirectoryEntry() functions, as it has been sent by the FTP server. It can be useful when the server isn't supported by ExamineFTPDirectory(), so the informations about the directory listing can still be retrieved and parsed accordingly.

Example:

  InitNetwork()
  
  If OpenFTP(0, "ftp.free.fr", "anonymous", "")
    If ExamineFTPDirectory(0)
      While NextFTPDirectoryEntry(0)
        Debug FTPDirectoryEntryRaw(0)
      Wend
    EndIf
  Else
    Debug "Can't connect to ftp.free.fr"
  EndIf

Supported OS

All

<- FTPDirectoryEntryName() - Ftp Index - FTPDirectoryEntrySize() ->