Esempio n. 1
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="Path">上传的目录</param>
        /// <param name="FileName">本地文件</param>
        /// <returns></returns>
        public bool UpFile(string Path, string FileName)
        {
            string FTPserver   = "203.171.234.7";
            int    FTPport     = 21;
            string FTPuser     = "******";
            string FTPpassword = "******";

            ROYcms.Common.FTP FTPSys = new Common.FTP(FTPserver, FTPport, FTPuser, FTPpassword);
            if (FTPSys.Connect()) //链接服务器成功
            {
                FTPSys.ChangeDir(Path);
                FTPSys.OpenUpload(Server.MapPath(FileName));
            }


            return(false);
        }
Esempio n. 2
0
        protected void Unnamed1_Click(object sender, EventArgs e)
        {
            string FTPserver   = "203.171.234.7";
            int    FTPport     = 21;
            string FTPuser     = "******";
            string FTPpassword = "******";

            ROYcms.Common.FTP FTPSys = new Common.FTP(FTPserver, FTPport, FTPuser, FTPpassword);
            if (FTPSys.Connect()) //链接服务器成功
            {
                Response.Write("连接成功!");
                if (FTPSys.OpenUpload(@"D:\1.txt"))
                {
                    Response.Write("成功!");
                }
                else
                {
                    Response.Write("失败!");
                }
            }
        }