static bool ensureFolderExists(List<String> filePath) { if(!projectFileExists(filePath)) { createProjectFolder(filePath); return true; } return false; }