Chilkat v11.0.0 Ftp2
The Chilkat.Ftp2 class has the following backward incompatible changes.
Ftp2.SyncedFiles property Removed
The SyncedFiles property was removed. It is replaced by the GetSyncedFiles
method.
Ftp2.NumFilesAndDirs property Removed
The NumFilesAndDirs
property has been deprecated for a number of years. Applications should instead call the GetDirCount
method.
Async* properties have been deprecated
The Async* properties have been deprecated and renamed to Cur*. The Async* properties have not yet been removed and will coexist with the renamed Cur* properties. Applications should switch to the new function names. The Async naming implied that the application could only get current real-time updates from async operations, but it also works if the Ftp2 transfer is happening synchronously in a background thread. Another thread, such as the foreground thread, is free to access these properties to get real-time information. These properties are special in that a caller can acceess them while another thread is in the midst of a function call...