Monday, January 20, 2025

Accessing the Location of a File in PCF - tidbit

Adding the file path in application properties does not help to find that file. 

Instead, putting file under src/main/resources and then using the following code helped to find file in PCF: File files = new File("./BOOT-INF/classes/file.csv").

No comments:

Post a Comment