我正在编写一些c#代码来备份我的Posgresql数据库。
public static bool MakeBackup(string schema, string userName, string password, string backupFolder)
{
var database = "Import";
var timestamp = DateTime.Now.ToString("yyyyMMdd-HH-mm-ss");
var file = String.Format("{0}_{1}.sql", schema, timestamp);
var fullPath = String.Format(@"{0}\{1}", backupFolder, file);
var executablePath = @"C:\Program Files\PostgreSQL\9.3\bin\pg_dump.exe";
var arguments = String.Format(@" -h localhost -d{0} -n{1} -U{2} -w{3} > {4}",database, schema, userName, password, fullPath );
Boolean result = false;
try
{
System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
info.FileName = executablePath;
info.Arguments = arguments;
info.CreateNoWindow = true;
info.UseShellExecute = false;
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = info;
proc.Start();
proc.WaitForExit();
result = true;
}
catch (Exception ex)
{
//Console.writeline(ex.Message);
}
return result;
}
我开始时遇到访问被拒绝错误。我通过确保我的应用程序具有对输出文件夹的写入权限并将info.Arguments
设置为完整的pg_dump.exe路径来修复此问题。
我尝试在调试中暂停,然后复制参数并在命令提示符中执行它,这很好。
所以我没有收到任何错误,但我的文件夹仍然是空的。
有什么建议吗?
答案 0 :(得分:1)
您正尝试使用>转发pg_dump的输出到一个文件。这不起作用,因为没有shell处理输出转发。相反,您应该使用pg_dump的选项-f output_file
将输出保存到所需的文件。
目前> file
将作为命令行参数发送到pg_dump,它可能会或可能不会显示错误。