FTPConnection

Understanding basics of 1C:Enterprise platform. To start working with 1C:Enterprise platform visit Getting started page

#1
People who like this:0Yes/0No
Just came
Rating: 1
Joined: Mar 12, 2012
Company:

How I can use in 1c FTPConnection?

 
#2
People who like this:0Yes/0No
Active user
Rating: 4
Joined: Sep 1, 2014
Company: Smart ID Dynamics

Try this:

Code
//Create FTP connection

  FTPConnection = New FTPConnection("192.168.0.1", 21, "anonymous", "123@123.com", New InternetProxy(True), True);
      
//Get method

  FTPConnection.Get(DbPath, TempSDFPath);
      
//Put Method

  FTPConnection.Put(TempSDFPath, NewSDFUUID + ".sdf");
      
//Delete method

  FTPConnection.Delete(DbPath);

 
#3
People who like this:0Yes/0No
Just came
Rating: 1
Joined: Mar 12, 2012
Company:

Thanks!

 
Subscribe
Users browsing this topic (guests: 1, registered: 0, hidden: 0)
Be the first to know tips & tricks on business application development!

A confirmation e-mail has been sent to the e-mail address you provided .

Click the link in the e-mail to confirm and activate the subscription.