I'm working on a Google Cloud project where I need to access a series of .csv files from a certain directory in my project. I believe I've made all of the files available in the cloud using the appengine-web.xml file with the following code:
<resource-files>
<include path="/path/to/files/**.csv" /> </resource-files>
When I try to access the files using the direct path to the file I get a "No such file or directory" exception. I've done some digging into other posts, and it seems as though I need to access the files from the current working directory, rather than the path to the file. How would I go about forming this path in Java? I'm unsure of how to ".." out of directories, so that I can then navigate the path to where it needs to be. Thanks!