Exemple #1
0
    private DataTable GetFiles()
    {
        BuckupOptions option = new BuckupOptions
        {
            BuckupFolder      = HttpContext.Current.Request.PhysicalApplicationPath + "backup\\",
            DestinationFolder = HttpContext.Current.Request.PhysicalApplicationPath,
            ConnectionString  = WebConfigurationManager.ConnectionStrings["BXConnectionString"].ConnectionString
        };

        chbIncludeDataBase.Text = string.Format("({0})", BuckupMeneger.GetDBSize(option));

        DataTable result = new DataTable();

        result.Columns.Add("Name", typeof(string));
        result.Columns.Add("FullName", typeof(string));
        result.Columns.Add("Size", typeof(int));
        result.Columns.Add("Created", typeof(DateTime));
        result.Columns.Add("ID", typeof(int));
        int i = 0;

        foreach (var file in BuckupMeneger.GetFiles(option))
        {
            DataRow dr = result.NewRow();
            dr["Name"]     = file.Name;
            dr["FullName"] = string.Format("{0}", file.FullName);
            dr["Size"]     = file.Length / 1024 / 1024;
            dr["Created"]  = file.CreationTime;
            dr["ID"]       = i;
            i++;
            result.Rows.Add(dr);
        }

        return(result);
    }
Exemple #2
0
    protected void btnArchive_Click(object sender, EventArgs e)
    {
        BuckupOptions option  = GetOption();
        BuckupMeneger meneger = new BuckupMeneger();

        meneger.Buckup(option);

        dataSource = GetFiles();
        BackupsGridView.MarkAsChanged();
        //FileListDataBind();
    }
Exemple #3
0
    protected void btnArchive_Click(object sender, EventArgs e)
    {
        long excludeFileSize = 0;

        long.TryParse(txbExcludeFileSize.Text, out excludeFileSize);

        DirectoryInfo dir = new DirectoryInfo(HttpContext.Current.Request.PhysicalApplicationPath + "backup\\");

        if (!dir.Exists)
        {
            dir.Create();
        }

        int stepDuration = 0;

        int.TryParse(txbStepDuration.Text, out stepDuration);

        int sleep = 0;

        int.TryParse(txbSleep.Text, out sleep);


        BuckupOptions option = new BuckupOptions
        {
            BuckupFolder      = HttpContext.Current.Request.PhysicalApplicationPath,
            DestinationFolder = dir.FullName,
            ExcludeFiles      = (@"*\bitrix\cache;*\backup;" + (!chbArchivePublicPart.Checked? @"*\bitrix;":string.Empty) + txbExcludeFiles.Text).Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries),
            IncludeCorePart   = chbArchiveCore.Checked,
            ExcludeFileSize   = excludeFileSize * 1024,
            ExcludeStandardTypesCompressing = chbExcludeStandardTypesCompressing.Checked,
            DisableCompresing = chbDisableCompressing.Checked,
            CheckPackage      = chbCheckPackage.Checked,
            IncludeDatabase   = chbIncludeDataBase.Checked,
            StepDuration      = stepDuration * 1000,
            Sleep             = sleep * 1000,
            ConnectionString  = WebConfigurationManager.ConnectionStrings["BXConnectionString"].ConnectionString
        };

        BuckupMeneger.Buckup(option);
        dataSource = GetFiles();
        BackupsGridView.MarkAsChanged();
        //FileListDataBind();
    }