From b4f69e428f1677339ff432c27e2cb8bfa756114e Mon Sep 17 00:00:00 2001 From: liamfallon Date: Wed, 22 Jan 2020 17:51:26 +0000 Subject: Create path to text file being created If you try and write to a file where part of the pat does not exist, that path should be created. Issue-ID: POLICY-1581 Change-Id: Ifb7a4ff4e1804814b6679956f0c58d5ac026c4a4 Signed-off-by: liamfallon --- .../java/org/onap/policy/common/utils/resources/TextFileUtils.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'utils/src/main/java/org/onap/policy/common/utils/resources/TextFileUtils.java') diff --git a/utils/src/main/java/org/onap/policy/common/utils/resources/TextFileUtils.java b/utils/src/main/java/org/onap/policy/common/utils/resources/TextFileUtils.java index 5aeacf26..01af7fd8 100644 --- a/utils/src/main/java/org/onap/policy/common/utils/resources/TextFileUtils.java +++ b/utils/src/main/java/org/onap/policy/common/utils/resources/TextFileUtils.java @@ -62,6 +62,10 @@ public abstract class TextFileUtils { */ public static void putStringAsTextFile(final String outString, final String textFilePath) throws IOException { final File textFile = new File(textFilePath); + if (!textFile.getParentFile().exists()) { + textFile.getParentFile().mkdirs(); + } + putStringAsFile(outString, textFile); } -- cgit 1.2.3-korg