Create output directory when extracting archive files

This commit is contained in:
Cody Robibero 2021-09-26 16:23:43 -06:00
parent 837d8feddc
commit 7668cd13f5
1 changed files with 5 additions and 0 deletions

View File

@ -45,6 +45,7 @@ namespace Emby.Server.Implementations.Archiving
options.Overwrite = true; options.Overwrite = true;
} }
Directory.CreateDirectory(targetPath);
reader.WriteAllToDirectory(targetPath, options); reader.WriteAllToDirectory(targetPath, options);
} }
@ -58,6 +59,7 @@ namespace Emby.Server.Implementations.Archiving
Overwrite = overwriteExistingFiles Overwrite = overwriteExistingFiles
}; };
Directory.CreateDirectory(targetPath);
reader.WriteAllToDirectory(targetPath, options); reader.WriteAllToDirectory(targetPath, options);
} }
@ -71,6 +73,7 @@ namespace Emby.Server.Implementations.Archiving
Overwrite = overwriteExistingFiles Overwrite = overwriteExistingFiles
}; };
Directory.CreateDirectory(targetPath);
reader.WriteAllToDirectory(targetPath, options); reader.WriteAllToDirectory(targetPath, options);
} }
@ -120,6 +123,7 @@ namespace Emby.Server.Implementations.Archiving
Overwrite = overwriteExistingFiles Overwrite = overwriteExistingFiles
}; };
Directory.CreateDirectory(targetPath);
reader.WriteAllToDirectory(targetPath, options); reader.WriteAllToDirectory(targetPath, options);
} }
@ -151,6 +155,7 @@ namespace Emby.Server.Implementations.Archiving
Overwrite = overwriteExistingFiles Overwrite = overwriteExistingFiles
}; };
Directory.CreateDirectory(targetPath);
reader.WriteAllToDirectory(targetPath, options); reader.WriteAllToDirectory(targetPath, options);
} }
} }