PrinterUtilGetObjectFromPrinterViaFtp Method (String, String, String)
             | 
          
        
         
            Retrieves a file from the printer's file system and returns the contents of that file as a byte[].
            
 
    Namespace: 
   Zebra.Sdk.Printer
    Assembly:
   SdkApi_Core (in SdkApi_Core.dll) Version: 2.14.1869
Syntaxpublic static byte[] GetObjectFromPrinterViaFtp(
	string connectionString,
	string filePathOnPrinter,
	string ftpPassword
)
Public Shared Function GetObjectFromPrinterViaFtp ( 
	connectionString As String,
	filePathOnPrinter As String,
	ftpPassword As String
) As Byte()
public:
static array<unsigned char>^ GetObjectFromPrinterViaFtp(
	String^ connectionString, 
	String^ filePathOnPrinter, 
	String^ ftpPassword
)
Parameters
- connectionString
 - Type: SystemString
The connection string. - filePathOnPrinter
 - Type: SystemString
File to retrieve. (e.g. "R:MYFILE.PNG") - ftpPassword
 - Type: SystemString
Password to use for ftp, if null a default password will be used. 
Return Value
Type: 
ByteFile contents.
Exceptions
Remarks
            Will retrieve the following file extensions: .FNT, .ZPL, .GRF, .DAT, .BAS, .STO, .PNG, .LBL, .TTF, .PCX, .BMP, .IMG, .TTE,
            .WML, .CSV, .HTM, .BAE, .TXT.
            See 
ConnectionBuilder for the format of 
connectionString.
            
See Also