/trunk/Source/Nito.KitchenSink/Interop/WinInet/FtpHandle.cs

# · C# · 254 lines · 101 code · 30 blank · 123 comment · 2 complexity · 316000340d2019008d97f4f5a877e016 MD5 · raw file

  1. // <copyright file="FtpHandle.cs" company="Nito Programs">
  2. // Copyright (c) 2010 Nito Programs.
  3. // </copyright>
  4. namespace Nito.KitchenSink.WinInet
  5. {
  6. using System;
  7. using System.Collections.Generic;
  8. /// <summary>
  9. /// An FTP connection handle. Normally, the <see cref="FtpConnection"/> class is used instead of this class. Note that this wrapper does NOT support asynchronous operations! Multiple threads may safely call <see cref="InternetHandle.Dispose"/>.
  10. /// </summary>
  11. public sealed class FtpHandle : InternetConnectHandle
  12. {
  13. /// <summary>
  14. /// Initializes a new instance of the <see cref="FtpHandle"/> class with the specified parameters. Normally, <see cref="InternetOpenHandle.Connect"/> or <see cref="O:Nito.KitchenSink.WinInet.InternetOpenHandle.ConnectFtp"/> is used instead of this constructor.
  15. /// </summary>
  16. /// <param name="parent">The parent internet connection.</param>
  17. /// <param name="serverName">Name of the server to which to connect.</param>
  18. /// <param name="serverPort">The server port to which to connect.</param>
  19. /// <param name="username">The username to use for authentication.</param>
  20. /// <param name="password">The password to use for authentication.</param>
  21. /// <param name="flags">The connection flags, such as <see cref="InternetConnectHandle.Flags.Passive"/> for passive FTP.</param>
  22. public FtpHandle(InternetHandle parent, string serverName, int serverPort, string username, string password, InternetConnectHandle.Flags flags)
  23. : base(parent, serverName, serverPort, username, password, Service.Ftp, flags)
  24. {
  25. }
  26. /// <summary>
  27. /// Additional flags for the <see cref="O:Nito.KitchenSink.WinInet.FtpHandle.FindFiles"/> operation.
  28. /// </summary>
  29. [Flags]
  30. public enum FindFilesFlags : int
  31. {
  32. /// <summary>
  33. /// No additional flags.
  34. /// </summary>
  35. None = 0x0,
  36. /// <summary>
  37. /// Forces a reload if there is no Expires time and no LastModified time returned from the server when determining whether to reload the item from the network.
  38. /// </summary>
  39. Hyperlink = 0x00000400,
  40. /// <summary>
  41. /// Causes a temporary file to be created if the file cannot be cached.
  42. /// </summary>
  43. NeedFile = 0x00000010,
  44. /// <summary>
  45. /// Does not add the returned entity to the cache.
  46. /// </summary>
  47. NoCacheWrite = 0x04000000,
  48. /// <summary>
  49. /// Forces a download of the requested file, object, or directory listing from the origin server, not from the cache.
  50. /// </summary>
  51. Reload = unchecked((int)0x80000000),
  52. /// <summary>
  53. /// Reloads FTP resources.
  54. /// </summary>
  55. Resynchronize = 0x00000800,
  56. }
  57. /// <summary>
  58. /// Additional flags for the <see cref="GetFile"/> operation.
  59. /// </summary>
  60. [Flags]
  61. public enum GetFileFlags : int
  62. {
  63. /// <summary>
  64. /// Transfers file as ASCII.
  65. /// </summary>
  66. Ascii = 0x1,
  67. /// <summary>
  68. /// Transfers file as binary.
  69. /// </summary>
  70. Binary = 0x2,
  71. /// <summary>
  72. /// Forces a reload if there is no Expires time and no LastModified time returned from the server when determining whether to reload the item from the network.
  73. /// </summary>
  74. Hyperlink = 0x00000400,
  75. /// <summary>
  76. /// Causes a temporary file to be created if the file cannot be cached.
  77. /// </summary>
  78. NeedFile = 0x00000010,
  79. /// <summary>
  80. /// Forces a download of the requested file, object, or directory listing from the origin server, not from the cache.
  81. /// </summary>
  82. Reload = unchecked((int)0x80000000),
  83. /// <summary>
  84. /// Reloads FTP resources.
  85. /// </summary>
  86. Resynchronize = 0x00000800,
  87. }
  88. /// <summary>
  89. /// Additional flags for the <see cref="PutFile"/> operation.
  90. /// </summary>
  91. [Flags]
  92. public enum PutFileFlags : int
  93. {
  94. /// <summary>
  95. /// Transfers file as ASCII.
  96. /// </summary>
  97. Ascii = 0x1,
  98. /// <summary>
  99. /// Transfers file as binary.
  100. /// </summary>
  101. Binary = 0x2,
  102. }
  103. /// <summary>
  104. /// Creates the specified directory on the remote FTP server.
  105. /// </summary>
  106. /// <param name="directory">The directory to create.</param>
  107. public void CreateDirectory(string directory)
  108. {
  109. UnsafeNativeMethods.FtpCreateDirectory(this.SafeInternetHandle, directory);
  110. }
  111. /// <summary>
  112. /// Retrieves the current working directory on the remote FTP server.
  113. /// </summary>
  114. /// <returns>The current working directory on the remote FTP server.</returns>
  115. public string GetCurrentDirectory()
  116. {
  117. return UnsafeNativeMethods.FtpGetCurrentDirectory(this.SafeInternetHandle);
  118. }
  119. /// <summary>
  120. /// Deletes the specified file on the remote FTP server.
  121. /// </summary>
  122. /// <param name="fileName">The file to delete.</param>
  123. public void DeleteFile(string fileName)
  124. {
  125. UnsafeNativeMethods.FtpDeleteFile(this.SafeInternetHandle, fileName);
  126. }
  127. /// <summary>
  128. /// Downloads the specified remote file from the FTP server, saving it at a local path and filename.
  129. /// </summary>
  130. /// <param name="remoteFile">The remote file to download.</param>
  131. /// <param name="localFile">The local path and filename to which to save the file.</param>
  132. /// <param name="failIfExists">Whether to fail if the local file specified by <paramref name="localFile"/> already exists.</param>
  133. /// <param name="flags">Additional flags for this action. At least <see cref="GetFileFlags.Ascii"/> or <see cref="GetFileFlags.Binary"/> should be specified.</param>
  134. public void GetFile(string remoteFile, string localFile, bool failIfExists, GetFileFlags flags)
  135. {
  136. UnsafeNativeMethods.FtpGetFile(this.SafeInternetHandle, remoteFile, localFile, failIfExists, flags);
  137. }
  138. /// <summary>
  139. /// Uploads the specified local file to the FTP server, saving it at a remote path and filename.
  140. /// </summary>
  141. /// <param name="localFile">The local file to upload.</param>
  142. /// <param name="remoteFile">The remote path and filename to which to save the file.</param>
  143. /// <param name="flags">Additional flags for this action. At least <see cref="PutFileFlags.Ascii"/> or <see cref="PutFileFlags.Binary"/> should be specified.</param>
  144. public void PutFile(string localFile, string remoteFile, PutFileFlags flags)
  145. {
  146. UnsafeNativeMethods.FtpPutFile(this.SafeInternetHandle, localFile, remoteFile, flags);
  147. }
  148. /// <summary>
  149. /// Removes the specified directory from the remote FTP server.
  150. /// </summary>
  151. /// <param name="directory">The directory to remove.</param>
  152. public void RemoveDirectory(string directory)
  153. {
  154. UnsafeNativeMethods.FtpRemoveDirectory(this.SafeInternetHandle, directory);
  155. }
  156. /// <summary>
  157. /// Renames the specified file on the FTP server.
  158. /// </summary>
  159. /// <param name="oldName">The old file name.</param>
  160. /// <param name="newName">The new file name.</param>
  161. public void RenameFile(string oldName, string newName)
  162. {
  163. UnsafeNativeMethods.FtpRenameFile(this.SafeInternetHandle, oldName, newName);
  164. }
  165. /// <summary>
  166. /// Sets the current working directory on the remote FTP server.
  167. /// </summary>
  168. /// <param name="directory">The new current working directory.</param>
  169. public void SetCurrentDirectory(string directory)
  170. {
  171. UnsafeNativeMethods.FtpSetCurrentDirectory(this.SafeInternetHandle, directory);
  172. }
  173. /// <summary>
  174. /// Finds matching files on the remote FTP server.
  175. /// </summary>
  176. /// <param name="search">The search string, which may include wildcards and/or directory information.</param>
  177. /// <param name="flags">Additional flags for this action.</param>
  178. /// <returns>All files matching the query on the remote FTP server.</returns>
  179. public IList<FtpDirectoryEntry> FindFiles(string search, FindFilesFlags flags)
  180. {
  181. List<FtpDirectoryEntry> ret = new List<FtpDirectoryEntry>();
  182. FtpDirectoryEntry entry;
  183. Nito.KitchenSink.WinInet.SafeInternetHandle find;
  184. if (!UnsafeNativeMethods.FtpFindFirstFile(this.SafeInternetHandle, search, flags, out entry, out find))
  185. {
  186. return ret;
  187. }
  188. using (find)
  189. {
  190. ret.Add(entry);
  191. while (UnsafeNativeMethods.FtpFindNextFile(find, out entry))
  192. {
  193. ret.Add(entry);
  194. }
  195. }
  196. return ret;
  197. }
  198. /// <summary>
  199. /// Finds matching files on the remote FTP server.
  200. /// </summary>
  201. /// <param name="search">The search string, which may include wildcards and/or directory information.</param>
  202. /// <returns>All files matching the query on the remote FTP server.</returns>
  203. public IList<FtpDirectoryEntry> FindFiles(string search)
  204. {
  205. return this.FindFiles(search, FindFilesFlags.None);
  206. }
  207. /// <summary>
  208. /// Retrieves all files from the current working directory on the remote FTP server.
  209. /// </summary>
  210. /// <returns>All files in the current working directory on the remote FTP server.</returns>
  211. public IList<FtpDirectoryEntry> FindFiles()
  212. {
  213. return this.FindFiles(string.Empty, FindFilesFlags.None);
  214. }
  215. /// <summary>
  216. /// Sends a command directly to the FTP server.
  217. /// </summary>
  218. /// <param name="command">The command to send to the FTP server.</param>
  219. public void SendCommand(string command)
  220. {
  221. UnsafeNativeMethods.FtpCommand(this.SafeInternetHandle, command);
  222. }
  223. }
  224. }