meowwwwwwwwwwwwwwwwwwwwwwwwwwwww

This commit is contained in:
Michael 2017-03-26 18:34:18 -04:00
parent 27190e56db
commit 579355e512

View file

@ -121,15 +121,7 @@ public ActionResult BackupAssets()
string backupUrl = backupDir.Remove(0, 1) + "/ShiftOS-" + DateTime.Now.ToString().Replace("/", "-") + ".zip";
string backupname = Path.Combine(backupServerDir, "ShiftOS-" + DateTime.Now.ToString().Replace("/", "-") + ".zip");
try
{
System.IO.Compression.ZipFile.CreateFromDirectory(Server.MapPath("~/Uploads"), backupname);
}
catch
{
return Content(backupname);
}
System.IO.Compression.ZipFile.CreateFromDirectory(Server.MapPath("~/Uploads"), backupname);
var backupData = new AssetBackup();
backupData.Id = Guid.NewGuid().ToString();
backupData.UserId = User.Identity.GetUserId();