繁体   English   中英

如何使用C#将.bak文件保存在特定文件夹中(Windows应用程序)

[英]How to save .bak file in specific folder using C# (windows application)

在我的程序中,我正在使用C#保存Sql备份文件,在该程序中,当我单击“ SAVEDIALOG”按钮时,但我想将此文件保存在特定的文件夹或特定的路径中。

意思是,我不想允许用户将文件保存在除特定路径之外的任何位置。

请帮我,下面是编码,我保存文件时点击事件。 注意:其桌面应用程序使用C#,SQL Server 2008。

private void btnCreate_Click(object sender, EventArgs e)
{
// If there was a SQL connection created

if (srvSql != null)
{

// If the user has chosen a path where to save the backup file

if (saveBackupDialog.ShowDialog() == DialogResult.OK)
{

// Create a new backup operation

Backup bkpDatabase = new Backup();

// Set the backup type to a database backup

bkpDatabase.Action = BackupActionType.Database;
// Set the database that we want to perform a backup on

bkpDatabase.Database = cmbDatabase.SelectedItem.ToString();

// Set the backup device to a file

BackupDeviceItem bkpDevice = new BackupDeviceItem(saveBackupDialog.FileName, DeviceType.File);

// Add the backup device to the backup

bkpDatabase.Devices.Add(bkpDevice);

// Perform the backup

bkpDatabase.SqlBackup(srvSql);

}
}
else
{

// There was no connection established; probably the Connect button was not clicked

MessageBox.Show("A connection to a SQL server was not established.", "Not Connected to Server", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);

}
}

您可以在任意位置写入您的价格,无需询问即可直接保存。 您需要删除保存文件对话框。

只需创建一个这样的字符串

string myPath = " a path whic you want to save  ";   


//string myPath = @"C:/backups/mybackup.sql";   

你可以在上面看到固定的代码


   private void btnCreate_Click(object sender, EventArgs e)
    {
    // If there was a SQL connection created

    if (srvSql != null)
    {

    // If the user has chosen a path where to save the backup file




    // Create a new backup operation

    Backup bkpDatabase = new Backup();

// Set the backup type to a database backup

bkpDatabase.Action = BackupActionType.Database;
// Set the database that we want to perform a backup on

bkpDatabase.Database = cmbDatabase.SelectedItem.ToString();

// Set the backup device to a file

string myPath = " a path whic you want to save  ";   


//string myPath = @"C:/backups/mybackup.sql";   


BackupDeviceItem bkpDevice = new BackupDeviceItem(myPath , DeviceType.File);

// Add the backup device to the backup

bkpDatabase.Devices.Add(bkpDevice);

// Perform the backup

bkpDatabase.SqlBackup(srvSql);


}
else
{

// There was no connection established; probably the Connect button was not clicked

MessageBox.Show("A connection to a SQL server was not established.", "Not Connected to Server", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);

}
 }

使用此代码,此处DatabaseBackupFilePath将是将保存备份文件的完整.bak文件路径。

 using System;
    using System.Configuration;
    using System.IO;
    using System.Data.SqlClient;
    using Microsoft.SqlServer.Management.Smo;
    using Microsoft.SqlServer.Management.Common;

public bool BackupDataBase()
        {
            bool isDatabackedUp = true;
            try
            {
                Backup sqlBackup = new Backup();

                if (null != sqlBackup)
                {
                    //Set the Database backup type
                    sqlBackup.Action = BackupActionType.Database;

                    //Set database backup description to be kept in the back up log table
                    sqlBackup.BackupSetDescription = Constants.DatabaseBackupDescription +
                                                     DateTime.Now.ToShortDateString();

                    sqlBackup.BackupSetName = Constants.DatabaseBackupSetName;

                    //Set the backup file path and backup type
                    BackupDeviceItem deviceItem = new BackupDeviceItem(DatabaseBackupFilePath, DeviceType.File);
                    ServerConnection connection = new ServerConnection(this.BackupConnection);

                    //Set the database name to backup
                    sqlBackup.Database = LocalDatabaseName;
                    sqlBackup.Initialize = true;
                    sqlBackup.Checksum = true;
                    sqlBackup.ContinueAfterError = true;

                    //Set the file details to save the backup
                    sqlBackup.Devices.Add(deviceItem);
                    sqlBackup.Incremental = false;

                    sqlBackup.LogTruncation = BackupTruncateLogType.Truncate;
                    sqlBackup.FormatMedia = false;

                    //Intiate the database backup
                    Server sqlServer = new Server(connection);
                    sqlBackup.SqlBackup(sqlServer);
                }

                return isDatabackedUp;
            }
            catch (Exception ex)
            {
                return false;
            }
        }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM