Example #1
0
 /// <summary>
 ///     Returns if a file or directory is existing on the server.
 /// </summary>
 /// <param name="destinationName">The name of the file or folder to check.</param>
 /// <returns>Returns "true" if the file or folder exists, otherwise "false".</returns>
 public bool IsExisting(string destinationName)
 {
     return(_transferProvider.IsExisting(destinationName));
 }