From 2d2f1a5cc111f3e4875f9f32efe52878f98a0ead Mon Sep 17 00:00:00 2001 From: Pk11 Date: Sun, 10 Nov 2019 13:21:10 -0600 Subject: [PATCH] Updated extractFile (markdown) --- extractFile.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/extractFile.md b/extractFile.md index 08b19eb..de05cc4 100644 --- a/extractFile.md +++ b/extractFile.md @@ -8,12 +8,25 @@ The Function `extractFile` contains 4 Parameters. `message` -> Message while extracting. -You can find an example here: -``` +You can find an example for a folder here: +```json { "type": "extractFile", "file": "/Spritesheets.zip", "input": "/", "output": "/LeafEdit/", "message": "Extracting SpriteSheets... please wait." - } \ No newline at end of file + } +``` +*Note that the input and output folders **must** end in a `/`* + +and an example for a file here: +```json + { + "type": "extractFile", + "file": "/LeafEdit.7z", + "input": "/LeafEdit.3dsx", + "output": "/3ds/LeafEdit.3dsx", + "message": "Extracting SpriteSheets... please wait." + } +``` \ No newline at end of file