FtpService.cs
资源名称:FtpServer.rar [点击查看]
上传用户:xuelanruo
上传日期:2015-04-02
资源大小:163k
文件大小:1k
源码类别:
Ftp服务器
开发平台:
C#
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Diagnostics;
- using System.ServiceProcess;
- using FtpServerLibrary;
- namespace FtpService
- {
- partial class FtpService : ServiceBase
- {
- private FtpServer ftpServer = new FtpServer();
- public FtpService()
- {
- InitializeComponent();
- }
- protected override void OnStart(string[] args)
- {
- // 启动FTP服务
- ftpServer.Start();
- }
- protected override void OnStop()
- {
- // 停止FTP服务
- ftpServer.Stop();
- }
- }
- }