Commit a4306a0a authored by mohammad.salama's avatar mohammad.salama

With Report

parent fdb074f0
File added
File added
...@@ -18,7 +18,7 @@ public class DiskFileStorage { ...@@ -18,7 +18,7 @@ public class DiskFileStorage {
} }
public void write(String fileNameWithType) throws IOException { public void write(String fileNameWithType) throws IOException {
String DEFAULT_PATH = "output/"; String DEFAULT_PATH = "FilesReceived/";
try (FileOutputStream fileOutputStream = new FileOutputStream(DEFAULT_PATH.concat(fileNameWithType))) { try (FileOutputStream fileOutputStream = new FileOutputStream(DEFAULT_PATH.concat(fileNameWithType))) {
this.byteArrayOutputStream.writeTo(fileOutputStream); this.byteArrayOutputStream.writeTo(fileOutputStream);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment