DroidExplorer.Core.UI.TransferDialog.PrivatePull C# (CSharp) Method

PrivatePull() private method

private PrivatePull ( List files, System destPath ) : void
files List
destPath System
return void
        private void PrivatePull( List<string> files, System.IO.DirectoryInfo destPath )
        {
            List<DroidExplorer.Core.IO.FileInfo> tfiles = new List<DroidExplorer.Core.IO.FileInfo> ( );
            foreach ( string item in files ) {
                DroidExplorer.Core.IO.FileInfo tf = DroidExplorer.Core.IO.FileInfo.Create ( System.IO.Path.GetFileName ( item ), 0, null,
                    null, null, DateTime.Now, false, item );
                tfiles.Add ( tf );
            }
            PrivatePull ( tfiles, destPath );
        }

Same methods

TransferDialog::PrivatePull ( DroidExplorer remoteFile, System destFile ) : void
TransferDialog::PrivatePull ( List files, System destPath ) : void