コード例 #1
0
ファイル: SureDialog.cs プロジェクト: gudao/NetHadoop
        public void ShowDialog(string fileName, MyShowDialogResult result)
        {
            label1.Text = "此位置已包含同名文件: " + fileName;

            myresult = result;
            base.ShowDialog();
        }
コード例 #2
0
ファイル: SureDialog.cs プロジェクト: yaowenhua/NetHadoop

        
コード例 #3
0
ファイル: AliYunClient.cs プロジェクト: yaowenhua/NetHadoop
        public void MutUpload(BackgroundWorker worker, List <string> localPath, string remoteRootPath, string localRootPath)
        {
            //相同操作
            bool sameOp = false;
            //是否覆盖
            bool IsOver = false;

            List <string> NoSuccessList = new List <string>();
            List <string> skipList      = new List <string>();

            int totalCount   = localPath.Count;
            int currentCount = 0;

            foreach (string localFilePath in localPath)
            {
                string fileName = Path.GetFileName(localFilePath);
                if (!string.IsNullOrEmpty(localRootPath))//如果是文件夹,则包含原有路径
                {
                    fileName = Path.GetFileName(localRootPath) + "/" + fileName;
                }

                string remoteFilePath = remoteRootPath.TrimStart('/') + fileName;
                currentCount++;
                int pgPresent = (int)((double)currentCount / totalCount * 100);
                //显示总进度
                worker.ReportProgress(pgPresent, new ProgressState()
                {
                    CurrentTitle = fileName, CurrentCount = currentCount
                });

                #region 是否存在
                if (!sameOp)
                {
                    bool exsitFile = client.DoesObjectExist(BucketName, remoteFilePath);
                    if (exsitFile)
                    {
                        SureDialog         myDialog = new SureDialog();
                        MyShowDialogResult myDR     = new MyShowDialogResult();
                        myDialog.ShowDialog(fileName, myDR);
                        sameOp = myDR.IsCheck;
                        IsOver = myDR.Result;
                        if (!myDR.Result)
                        {
                            worker.ReportProgress(pgPresent, new ProgressState()
                            {
                                ListBoxMsg = fileName + " 跳过 "
                            });
                            skipList.Add(fileName);
                            continue;
                        }
                    }
                }
                else
                {
                    bool exsitFile = client.DoesObjectExist(BucketName, remoteFilePath);
                    if (exsitFile)
                    {
                        if (!IsOver)
                        {
                            worker.ReportProgress(pgPresent, new ProgressState()
                            {
                                ListBoxMsg = fileName + "跳过 "
                            });
                            skipList.Add(fileName);
                            continue;
                        }
                    }
                }
                #endregion


                #region   单个文件
                bool singleResult = false;

                try
                {
                    client.PutObject(BucketName, remoteFilePath, localFilePath);
                    singleResult = true;
                }
                catch (Exception ee)
                {
                    singleResult = false;
                    logger.Error("upload Error:" + ee);
                }

                #endregion
                //显示单个上传结果
                string msg = string.Format("{0} 上传{1}", fileName, singleResult ? "成功" : "失败");
                worker.ReportProgress(pgPresent, new ProgressState()
                {
                    ListBoxMsg = msg
                });
                if (!singleResult)
                {
                    NoSuccessList.Add(fileName);
                }
            }
        }
コード例 #4
0
ファイル: AliYunClient.cs プロジェクト: yaowenhua/NetHadoop
        public void MutDownLoad(BackgroundWorker worker, string localRootPath, List <FileInfoModel> fileList, int fileType)
        {
            //相同操作
            bool sameOp = false;
            //是否覆盖
            bool IsOver = false;

            int totalCount   = fileList.Count;
            int currentCount = 0;

            foreach (FileInfoModel myfile in fileList)
            {
                currentCount++;
                int pgPresent = (int)((double)currentCount / totalCount * 100);

                string fileName = Path.GetFileName(myfile.Path);
                if (myfile.Isdir == false)
                {
                    string savePath = localRootPath + "/" + fileName;
                    if (fileType == 1 && myfile.FileName != null)
                    {
                        savePath = localRootPath + "/" + myfile.FileName;
                    }
                    if (fileType == 2 && myfile.FileName != null)
                    {
                        savePath = localRootPath + "/" + myfile.FileName + "/" + fileName;
                    }
                    //显示总进度
                    worker.ReportProgress(pgPresent, new ProgressState()
                    {
                        CurrentTitle = fileName, CurrentCount = currentCount
                    });

                    #region 是否存在
                    if (!sameOp)
                    {
                        bool exsitFile = File.Exists(savePath);
                        if (exsitFile)
                        {
                            SureDialog         myDialog = new SureDialog();
                            MyShowDialogResult myDR     = new MyShowDialogResult();
                            myDialog.ShowDialog(fileName, myDR);
                            sameOp = myDR.IsCheck;
                            IsOver = myDR.Result;
                            if (!myDR.Result)
                            {
                                worker.ReportProgress(pgPresent, new ProgressState()
                                {
                                    ListBoxMsg = fileName + " 跳过 "
                                });
                                continue;
                            }
                        }
                    }
                    else
                    {
                        bool exsitFile = File.Exists(savePath);
                        if (exsitFile)
                        {
                            if (!IsOver)
                            {
                                worker.ReportProgress(pgPresent, new ProgressState()
                                {
                                    ListBoxMsg = fileName + "跳过 "
                                });
                                continue;
                            }
                        }
                    }
                    #endregion

                    #region 单个下载
                    bool result = false;

                    var ossObj = client.GetObject(BucketName, myfile.Path);

                    using (var requestStream = ossObj.Content)
                    {
                        long totalBytes = 0;
                        using (var fs = File.Open(savePath, FileMode.OpenOrCreate))
                        {
                            int length = 4 * 1024;
                            var buf    = new byte[length];
                            do
                            {
                                length = requestStream.Read(buf, 0, length);
                                fs.Write(buf, 0, length);

                                totalBytes += length;
                                int mypresent = (int)((double)totalBytes / myfile.Size * 100);
                                worker.ReportProgress(pgPresent, new ProgressState()
                                {
                                    CurrentTitle = mypresent + "% " + fileName
                                });
                            } while (length != 0);

                            result = true;
                        }
                    }


                    #endregion

                    string msg = string.Format("{0} 下载{1}", Path.GetFileName(fileName), result ? "成功" : "失败");
                    worker.ReportProgress(pgPresent, new ProgressState()
                    {
                        ListBoxMsg = msg
                    });
                }
                else
                {
                    worker.ReportProgress(pgPresent, new ProgressState()
                    {
                        ListBoxMsg = fileName + "不是文件!"
                    });
                }
            }
        }
コード例 #5
0
ファイル: FSClient.cs プロジェクト: yaowenhua/NetHadoop
        //批量上传
        public void MutUpload(BackgroundWorker worker, List <string> localPath, string remoteRootPath, string localRootPath)
        {
            //相同操作
            bool sameOp = false;
            //是否覆盖
            bool IsOver = false;

            //准备创建连接
            Thrift.Transport.TBufferedTransport btsport      = null;
            ThriftHadoopFileSystem.Client       thriftClient = Connect(out btsport);
            List <string> NoSuccessList = new List <string>();
            List <string> skipList      = new List <string>();

            if (thriftClient != null)//连接成功
            {
                int totalCount   = localPath.Count;
                int currentCount = 0;
                //开始上传
                worker.ReportProgress(0, new ProgressState()
                {
                    ListBoxMsg = "开始上传!", totalCount = totalCount, CurrentCount = 0
                });
                //循环
                foreach (string localFilePath in localPath)
                {
                    string fileName = Path.GetFileName(localFilePath);
                    if (!string.IsNullOrEmpty(localRootPath))//如果是文件夹,则包含原有路径
                    {
                        fileName = localFilePath.Replace(localRootPath, "");
                    }

                    string remoteFilePath = remoteRootPath + "/" + fileName;
                    currentCount++;
                    int pgPresent = (int)((double)currentCount / totalCount * 100);
                    //显示总进度
                    worker.ReportProgress(pgPresent, new ProgressState()
                    {
                        CurrentTitle = fileName, CurrentCount = currentCount
                    });

                    #region 是否存在
                    if (!sameOp)
                    {
                        bool exsitFile = thriftClient.exists(new Pathname()
                        {
                            pathname = remoteFilePath
                        });
                        if (exsitFile)
                        {
                            SureDialog         myDialog = new SureDialog();
                            MyShowDialogResult myDR     = new MyShowDialogResult();
                            myDialog.ShowDialog(fileName, myDR);
                            sameOp = myDR.IsCheck;
                            IsOver = myDR.Result;
                            if (!myDR.Result)
                            {
                                worker.ReportProgress(pgPresent, new ProgressState()
                                {
                                    ListBoxMsg = fileName + " 跳过 "
                                });
                                skipList.Add(fileName);
                                continue;
                            }
                        }
                    }
                    else
                    {
                        bool exsitFile = thriftClient.exists(new Pathname()
                        {
                            pathname = remoteFilePath
                        });
                        if (exsitFile)
                        {
                            if (!IsOver)
                            {
                                worker.ReportProgress(pgPresent, new ProgressState()
                                {
                                    ListBoxMsg = fileName + "跳过 "
                                });
                                skipList.Add(fileName);
                                continue;
                            }
                        }
                    }
                    #endregion


                    #region   单个文件
                    bool         singleResult = false;
                    ThriftHandle th           = null;
                    FileStream   fs           = null;
                    try
                    {
                        Pathname myNewFile = new Pathname()
                        {
                            pathname = remoteFilePath
                        };

                        //创建一个文件
                        th = thriftClient.createFile(myNewFile, 1, true, 1024 * 1024 * 10, ConfigHelper.HDFSREPLICATION, 1024 * 1024 * 512);

                        UTF8Encoding utf8 = new UTF8Encoding(false, true);

                        fs = new FileStream(localFilePath, FileMode.Open, FileAccess.Read);

                        byte[] fileBuffer = new byte[1024 * 1024 * 10]; // 每次传1MB
                        int    bytesRead;
                        long   bytesTotal = 0;

                        while ((bytesRead = fs.Read(fileBuffer, 0, fileBuffer.Length)) > 0)
                        {
                            bytesTotal += bytesRead;
                            byte[] realBuffer = new byte[bytesRead];
                            Array.Copy(fileBuffer, realBuffer, bytesRead);
                            //将utf8转为可存储编码
                            realBuffer = Encoding.Convert(Encoding.GetEncoding("iso-8859-1"), utf8, realBuffer);
                            //发送
                            thriftClient.write(th, realBuffer);
                            //清仓缓存
                            Array.Clear(fileBuffer, 0, fileBuffer.Length);
                            realBuffer = null;
                            //显示单个上传进度
                            int mypresent = (int)((double)bytesTotal / fs.Length * 100);
                            worker.ReportProgress(pgPresent, new ProgressState()
                            {
                                CurrentTitle = mypresent + "% " + fileName
                            });
                        }
                        singleResult = true;
                    }
                    catch (Exception ee)
                    {
                        //显示上传错误
                        worker.ReportProgress(pgPresent, new ProgressState()
                        {
                            ListBoxMsg = ee.Message
                        });
                    }
                    finally
                    {
                        if (th != null)
                        {
                            thriftClient.close(th);
                        }
                        if (fs != null)
                        {
                            fs.Close();
                        }
                    }
                    #endregion
                    //显示单个上传结果
                    string msg = string.Format("{0} 上传{1}", fileName, singleResult ? "成功" : "失败");
                    worker.ReportProgress(pgPresent, new ProgressState()
                    {
                        ListBoxMsg = msg
                    });
                    if (!singleResult)
                    {
                        NoSuccessList.Add(fileName);
                    }
                }
            }

            //释放连接
            if (btsport != null)
            {
                btsport.Close();
            }
            //输出没有上传成功的
            if (NoSuccessList.Count > 0)
            {
                try
                {
                    File.WriteAllText("c:/UploadNoSuccess.txt", string.Join("\r\n", NoSuccessList.ToArray()));
                    worker.ReportProgress(100, new ProgressState()
                    {
                        ListBoxMsg = NoSuccessList.Count + "个上传错误!请查看c:/UploadNoSuccess.txt"
                    });
                }
                catch (Exception ee)
                {
                    worker.ReportProgress(100, new ProgressState()
                    {
                        ListBoxMsg = ee.Message
                    });
                }
            }
            //输出跳过的
            if (skipList.Count > 0)
            {
                try
                {
                    File.WriteAllText("c:/UploadSkip.txt", string.Join("\r\n", skipList.ToArray()));
                    worker.ReportProgress(100, new ProgressState()
                    {
                        ListBoxMsg = "跳过" + skipList.Count + "个文件!请查看c:/UploadSkip.txt"
                    });
                }
                catch (Exception ee)
                {
                    worker.ReportProgress(100, new ProgressState()
                    {
                        ListBoxMsg = ee.Message
                    });
                }
            }
        }
コード例 #6
0
ファイル: FSClient.cs プロジェクト: yaowenhua/NetHadoop
        //批量下载
        public void MutDownLoad(BackgroundWorker worker, string localRootPath, List <FileStatus> fileList, int fileType)
        {
            //相同操作
            bool sameOp = false;
            //是否覆盖
            bool IsOver = false;

            //准备创建连接
            Thrift.Transport.TBufferedTransport btsport      = null;
            ThriftHadoopFileSystem.Client       thriftClient = Connect(out btsport);

            if (thriftClient != null)//连接成功
            {
                int totalCount   = fileList.Count;
                int currentCount = 0;
                //开始上传
                worker.ReportProgress(0, new ProgressState()
                {
                    ListBoxMsg = "开始下载!", totalCount = totalCount, CurrentCount = 0
                });
                //循环
                foreach (FileStatus myfile in fileList)
                {
                    currentCount++;
                    int pgPresent = (int)((double)currentCount / totalCount * 100);

                    string fileName = Path.GetFileName(myfile.Path);
                    if (myfile.Isdir == false)
                    {
                        string savePath = localRootPath + "/" + fileName;
                        if (fileType == 1 && myfile.FileName != null)
                        {
                            savePath = localRootPath + "/" + myfile.FileName;
                        }
                        if (fileType == 2 && myfile.FileName != null)
                        {
                            savePath = localRootPath + "/" + myfile.FileName + "/" + fileName;
                        }
                        //显示总进度
                        worker.ReportProgress(pgPresent, new ProgressState()
                        {
                            CurrentTitle = fileName, CurrentCount = currentCount
                        });

                        #region 是否存在
                        if (!sameOp)
                        {
                            bool exsitFile = File.Exists(savePath);
                            if (exsitFile)
                            {
                                SureDialog         myDialog = new SureDialog();
                                MyShowDialogResult myDR     = new MyShowDialogResult();
                                myDialog.ShowDialog(fileName, myDR);
                                sameOp = myDR.IsCheck;
                                IsOver = myDR.Result;
                                if (!myDR.Result)
                                {
                                    worker.ReportProgress(pgPresent, new ProgressState()
                                    {
                                        ListBoxMsg = fileName + " 跳过 "
                                    });
                                    continue;
                                }
                            }
                        }
                        else
                        {
                            bool exsitFile = File.Exists(savePath);
                            if (exsitFile)
                            {
                                if (!IsOver)
                                {
                                    worker.ReportProgress(pgPresent, new ProgressState()
                                    {
                                        ListBoxMsg = fileName + "跳过 "
                                    });
                                    continue;
                                }
                            }
                        }
                        #endregion

                        #region 单个下载
                        bool         result = false;
                        ThriftHandle th     = thriftClient.open(new Pathname()
                        {
                            pathname = myfile.Path
                        });
                        // 创建文件流
                        FileStream fs         = new FileStream(savePath, FileMode.Create, FileAccess.Write);
                        long       totalBytes = 0;
                        int        readLength = 1024 * 1024;
                        try
                        {
                            UTF8Encoding utf8 = new UTF8Encoding(false, true);
                            while (true)
                            {
                                int needRead = readLength;
                                if (myfile.Length - totalBytes < readLength)
                                {
                                    needRead = (int)(myfile.Length - totalBytes);
                                }
                                if (needRead <= 0)
                                {
                                    break;
                                }

                                byte[] fileBuffer   = thriftClient.read(th, totalBytes, needRead);
                                byte[] myfileBuffer = Encoding.Convert(utf8, Encoding.GetEncoding("iso-8859-1"), fileBuffer);
                                totalBytes += needRead;
                                fs.Write(myfileBuffer, 0, myfileBuffer.Length);

                                //显示单个上传进度
                                int mypresent = (int)((double)totalBytes / myfile.Length * 100);
                                worker.ReportProgress(pgPresent, new ProgressState()
                                {
                                    CurrentTitle = mypresent + "% " + fileName
                                });
                            }
                            result = true;
                        }
                        catch (Exception ee)
                        {
                            throw ee;
                        }
                        finally
                        {
                            fs.Dispose();
                            if (thriftClient != null)
                            {
                                thriftClient.close(th);
                            }
                        }

                        #endregion

                        string msg = string.Format("{0} 下载{1}", Path.GetFileName(fileName), result ? "成功" : "失败");
                        worker.ReportProgress(pgPresent, new ProgressState()
                        {
                            ListBoxMsg = msg
                        });
                    }
                    else
                    {
                        worker.ReportProgress(pgPresent, new ProgressState()
                        {
                            ListBoxMsg = fileName + "不是文件!"
                        });
                    }
                }
            }

            //释放连接
            if (btsport != null)
            {
                btsport.Close();
            }
        }
コード例 #7
0
ファイル: FSClient.cs プロジェクト: gudao/NetHadoop
        //批量上传
        public void MutUpload(BackgroundWorker worker, List<string>localPath, string remoteRootPath,string localRootPath)
        {
            //相同操作
               bool sameOp = false;
               //是否覆盖
               bool IsOver = false;
               //准备创建连接
               Thrift.Transport.TBufferedTransport btsport = null;
               ThriftHadoopFileSystem.Client thriftClient = Connect(out btsport);
               List<string> NoSuccessList = new List<string>();
               List<string> skipList = new List<string>();
               if (thriftClient != null)//连接成功
               {
               int totalCount = localPath.Count;
               int currentCount = 0;
               //开始上传
               worker.ReportProgress(0, new ProgressState() { ListBoxMsg = "开始上传!",totalCount=totalCount, CurrentCount=0 });
               //循环
               foreach (string localFilePath in localPath)
               {
                   string fileName = Path.GetFileName(localFilePath);
                   if (!string.IsNullOrEmpty(localRootPath))//如果是文件夹,则包含原有路径
                       fileName = localFilePath.Replace(localRootPath, "");

                   string remoteFilePath = remoteRootPath + "/" + fileName;
                   currentCount++;
                   int pgPresent = (int)((double)currentCount / totalCount * 100);
                   //显示总进度
                   worker.ReportProgress(pgPresent, new ProgressState() { CurrentTitle = fileName, CurrentCount = currentCount });

                   #region 是否存在
                   if (!sameOp)
                   {
                       bool exsitFile = thriftClient.exists(new Pathname() { pathname = remoteFilePath });
                       if (exsitFile)
                       {
                           SureDialog myDialog = new SureDialog();
                           MyShowDialogResult myDR = new MyShowDialogResult();
                           myDialog.ShowDialog(fileName, myDR);
                           sameOp = myDR.IsCheck;
                           IsOver = myDR.Result;
                           if (!myDR.Result)
                           {
                               worker.ReportProgress(pgPresent, new ProgressState() { ListBoxMsg =  fileName +" 跳过 " });
                               skipList.Add(fileName);
                               continue;
                           }
                       }
                   }
                   else
                   {
                        bool exsitFile = thriftClient.exists(new Pathname() { pathname = remoteFilePath });
                        if (exsitFile)
                        {
                            if (!IsOver)
                            {
                                worker.ReportProgress(pgPresent, new ProgressState() { ListBoxMsg =fileName + "跳过 " });
                                skipList.Add(fileName);
                                continue;
                            }
                        }
                   }
                   #endregion

                    #region 上传单个文件
                   bool singleResult = false;
                   ThriftHandle th = null;
                   FileStream fs = null;
                   try
                   {
                       Pathname myNewFile=new Pathname() { pathname = remoteFilePath };

                       //创建一个文件
                       th = thriftClient.createFile(myNewFile, 1, true, 1024*1024*10, ConfigHelper.HDFSREPLICATION, 1024 * 1024 * 512);

                       UTF8Encoding utf8 = new UTF8Encoding(false, true);

                       fs = new FileStream(localFilePath, FileMode.Open, FileAccess.Read);

                       byte[] fileBuffer = new byte[1024 * 1024*10];	// 每次传1MB
                       int bytesRead;
                       long bytesTotal = 0;

                       while ((bytesRead = fs.Read(fileBuffer, 0, fileBuffer.Length)) > 0)
                       {
                           bytesTotal += bytesRead;
                           byte[] realBuffer = new byte[bytesRead];
                           Array.Copy(fileBuffer, realBuffer, bytesRead);
                           //将utf8转为可存储编码
                           realBuffer = Encoding.Convert(Encoding.GetEncoding("iso-8859-1"), utf8, realBuffer);
                           //发送
                           thriftClient.write(th, realBuffer);
                           //清仓缓存
                           Array.Clear(fileBuffer, 0, fileBuffer.Length);
                           realBuffer = null;
                           //显示单个上传进度
                           int mypresent = (int)((double)bytesTotal / fs.Length * 100);
                           worker.ReportProgress(pgPresent, new ProgressState() { CurrentTitle = mypresent + "% " + fileName });
                       }
                       singleResult = true;
                   }
                   catch (Exception ee)
                   {
                       //显示上传错误
                       worker.ReportProgress(pgPresent, new ProgressState() { ListBoxMsg = ee.Message });
                   }
                   finally
                   {
                       if (th != null)
                           thriftClient.close(th);
                       if (fs != null)
                           fs.Close();
                   }
                    #endregion
                   //显示单个上传结果
                   string msg = string.Format("{0} 上传{1}", fileName, singleResult ? "成功" : "失败");
                   worker.ReportProgress(pgPresent, new ProgressState() { ListBoxMsg = msg });
                   if (!singleResult)
                   {
                       NoSuccessList.Add(fileName);
                   }
               }
               }

               //释放连接
               if (btsport != null)
               {
               btsport.Close();
               }
               //输出没有上传成功的
               if (NoSuccessList.Count > 0)
               {
               try
               {
                   File.WriteAllText("c:/UploadNoSuccess.txt", string.Join("\r\n", NoSuccessList.ToArray()));
                   worker.ReportProgress(100, new ProgressState() { ListBoxMsg = NoSuccessList.Count + "个上传错误!请查看c:/UploadNoSuccess.txt" });
               }
               catch (Exception ee)
               {
                   worker.ReportProgress(100, new ProgressState() { ListBoxMsg =ee.Message  });
               }
               }
               //输出跳过的
               if (skipList.Count > 0)
               {
               try
               {
                   File.WriteAllText("c:/UploadSkip.txt", string.Join("\r\n", skipList.ToArray()));
                   worker.ReportProgress(100, new ProgressState() { ListBoxMsg = "跳过" + skipList.Count + "个文件!请查看c:/UploadSkip.txt" });
               }
               catch (Exception ee)
               {
                   worker.ReportProgress(100, new ProgressState() { ListBoxMsg = ee.Message });
               }
               }
        }
コード例 #8
0
ファイル: FSClient.cs プロジェクト: gudao/NetHadoop
        //批量下载
        public void MutDownLoad(BackgroundWorker worker, string localRootPath, List<FileStatus> fileList,int fileType)
        {
            //相同操作
               bool sameOp = false;
               //是否覆盖
               bool IsOver = false;
            //准备创建连接
               Thrift.Transport.TBufferedTransport btsport = null;
               ThriftHadoopFileSystem.Client thriftClient = Connect(out btsport);

               if (thriftClient != null)//连接成功
               {
               int totalCount = fileList.Count;
               int currentCount = 0;
               //开始上传
               worker.ReportProgress(0, new ProgressState() { ListBoxMsg = "开始下载!", totalCount = totalCount, CurrentCount = 0 });
               //循环
               foreach (FileStatus myfile in fileList)
               {
                   currentCount++;
                   int pgPresent = (int)((double)currentCount / totalCount * 100);

                    string fileName = Path.GetFileName(myfile.Path);
                   if (myfile.Isdir == false)
                   {

                       string savePath = localRootPath + "/" + fileName;
                       if (fileType == 1&&myfile.FileName!=null)
                       {
                           savePath = localRootPath + "/" + myfile.FileName;
                       }
                       if (fileType == 2 && myfile.FileName != null)
                       {
                           savePath = localRootPath + "/" + myfile.FileName+"/"+fileName;
                       }
                       //显示总进度
                       worker.ReportProgress(pgPresent, new ProgressState() { CurrentTitle = fileName, CurrentCount = currentCount });

                       #region 是否存在
                       if (!sameOp)
                       {
                           bool exsitFile = File.Exists(savePath);
                           if (exsitFile)
                           {
                               SureDialog myDialog = new SureDialog();
                               MyShowDialogResult myDR = new MyShowDialogResult();
                               myDialog.ShowDialog(fileName, myDR);
                               sameOp = myDR.IsCheck;
                               IsOver = myDR.Result;
                               if (!myDR.Result)
                               {
                                   worker.ReportProgress(pgPresent, new ProgressState() { ListBoxMsg = fileName + " 跳过 " });
                                   continue;
                               }
                           }
                       }
                       else
                       {
                           bool exsitFile = File.Exists(savePath);
                           if (exsitFile)
                           {
                               if (!IsOver)
                               {
                                   worker.ReportProgress(pgPresent, new ProgressState() { ListBoxMsg = fileName + "跳过 " });
                                   continue;
                               }
                           }
                       }
                       #endregion

                       #region 单个下载
                       bool result = false;
                       ThriftHandle th = thriftClient.open(new Pathname() { pathname = myfile.Path });
                       // 创建文件流
                       FileStream fs = new FileStream(savePath, FileMode.Create, FileAccess.Write);
                       long totalBytes = 0;
                       int readLength = 1024 * 1024;
                       try
                       {
                           UTF8Encoding utf8 = new UTF8Encoding(false, true);
                           while (true)
                           {
                               int needRead = readLength;
                               if (myfile.Length - totalBytes < readLength)
                               {
                                   needRead = (int)(myfile.Length - totalBytes);
                               }
                               if (needRead <= 0)
                                   break;

                               byte[] fileBuffer = thriftClient.read(th, totalBytes, needRead);
                               byte[] myfileBuffer = Encoding.Convert(utf8, Encoding.GetEncoding("iso-8859-1"), fileBuffer);
                               totalBytes += needRead;
                               fs.Write(myfileBuffer, 0, myfileBuffer.Length);

                               //显示单个上传进度
                               int mypresent = (int)((double)totalBytes / myfile.Length * 100);
                               worker.ReportProgress(pgPresent, new ProgressState() { CurrentTitle = mypresent + "% " + fileName });

                           }
                           result = true;
                       }
                       catch (Exception ee)
                       {
                           throw ee;
                       }
                       finally
                       {
                           fs.Dispose();
                           if (thriftClient != null)
                               thriftClient.close(th);
                       }

                       #endregion

                       string msg = string.Format("{0} 下载{1}", Path.GetFileName(fileName), result ? "成功" : "失败");
                       worker.ReportProgress(pgPresent, new ProgressState() { ListBoxMsg = msg });
                   }
                   else
                   {
                       worker.ReportProgress(pgPresent, new ProgressState() { ListBoxMsg = fileName+"不是文件!"});
                   }
               }
               }

               //释放连接
               if (btsport != null)
               {
               btsport.Close();
               }
        }