I am on Windows, trying to move from running Julia in Jupyter notebooks to directly running my code from VisualStudio.
I am working on a project that uses multiple modules (XXX.jl files) that live in one subfolder, but which draw on data files (YYY.csv) that live in another subfolder.
That is, my folder structure is: ..\project\modules and ..\project\data.
So far I have managed to set my general Julia working directory in VisualStudio to .…\project.
In my code (XXX.jl), I can load modules by including them via “…/modules/XXX.jl”.
However, when a module tries to access one of the data files in ..\project\data, I get an error: “ERROR: LoadError: ArgumentError: “…/data/YYY.csv” is not a valid file or doesn’t exist”
When I run the same code in Jupyter notebook with the same project working directory set everything runs smoothly, which makes me think this is an issue with my VS configuration.
Many thanks for helping, and apologies if this is not phrased correctly - it’s my first post.