static bool existsSync(List<String> paths) { bool anyNotExist = false; for(String path in paths) { if(!File(path).existsSync()){ anyNotExist = true; } } return anyNotExist; }