MutDownLoad() public method

public MutDownLoad ( BackgroundWorker worker, string localRootPath, List fileList, int fileType ) : void
worker System.ComponentModel.BackgroundWorker
localRootPath string
fileList List
fileType int
return void
示例#1
0
        private void DoDownLoadWork(object sender, DoWorkEventArgs e)
        {
            DownloadArg da = e.Argument as DownloadArg;

            FSClient fs = new FSClient();

            fs.MutDownLoad(worker, da.SavePath, da.FileList, da.OutFileType);
            e.Result = "'" + da.SavePath + "',共找到" + da.FileList.Count + "个文件";
        }
示例#2
0
        private void DoDownLoadWork(object sender, DoWorkEventArgs e)
        {
            DownloadArg da = e.Argument as DownloadArg;

            FSClient fs = new FSClient();

            fs.MutDownLoad(worker, da.SavePath, da.FileList, da.OutFileType);
            e.Result = "'" + da.SavePath + "',共找到" + da.FileList.Count + "个文件";
        }