FtpService.cs
上传用户:xuelanruo
上传日期:2015-04-02
资源大小:163k
文件大小:1k
源码类别:

Ftp服务器

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Diagnostics;
  5. using System.ServiceProcess;
  6. using FtpServerLibrary;
  7. namespace FtpService
  8. {
  9. partial class FtpService : ServiceBase
  10. {
  11. private FtpServer ftpServer = new FtpServer();
  12. public FtpService()
  13. {
  14. InitializeComponent();
  15. }
  16. protected override void OnStart(string[] args)
  17. {
  18. // 启动FTP服务
  19. ftpServer.Start();
  20. }
  21. protected override void OnStop()
  22. {
  23. // 停止FTP服务
  24. ftpServer.Stop();
  25. }
  26. }
  27. }