We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84e6a4b commit c28fed9Copy full SHA for c28fed9
eFormAPI/eFormAPI/Controllers/TemplateFilesController.cs
@@ -232,7 +232,7 @@ public HttpResponseMessage UploadEformZip()
232
{
233
var filePath = Path.Combine(zipArchiveFolder, Path.GetFileName(httpPostedFile.FileName));
234
var extractPath = Path.Combine(saveFolder);
235
- if (File.Exists(filePath))
+ if (!File.Exists(filePath))
236
237
httpPostedFile.SaveAs(filePath);
238
}
0 commit comments