Hi Team :party-parrot: Hopefully a quick one: What...
# questions
b
Hi Team 🦜 Hopefully a quick one: What's the best way to specify saving catalog entries to parent directories? I have the below structure:
Copy code
folder1
  projects
    project1
      conf
      data
      src
folder2
  data
And I want to save to
folder2/data
- when I try relative paths, it seems to append that to
folder1/projects/project1/<relative_path>
(as in, it adds the dots to the path as well). How can I achieve this?
βœ… 1
Okay, seems like full path does work, I just mistypes a slash - still doesn't want to let me, but might be a permissions error this time
n
This should work out of the box, it’s all standard Python
Path
so nothing specific about Kedro. Can you show the error that you get and maybe your catalog entry?
Copy code
report_accuracy:
  type: text.TextDataSet
  filepath: ../data/text.txt
b
yes, this is resolved, the fix was me typing things correctly πŸ˜‚ , thanks @Nok Lam Chan
n
I did a quick test and it works
NiceπŸ˜‚