diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java b/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java index 1a6f272d28..ef75b1de5d 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/ArtifactStringContent.java @@ -104,6 +104,22 @@ public class ArtifactStringContent implements StringContent { buffer.append(""); buffer.append(""); } + + //add file path + buffer.append(""); + buffer.append("Source File"); + buffer.append(""); + final Content content = getAssociatedContent(wrapped); + buffer.append(content.getName()); + buffer.append(""); + buffer.append(""); + buffer.append(""); + buffer.append("Source File Path"); + buffer.append(""); + buffer.append(DataConversion.getformattedPath(ContentUtils.getDisplayPath(content), 0, 1)); + buffer.append(""); + buffer.append(""); + buffer.append(""); buffer.append(""); return buffer.toString();