Checks if the provided filePath is a private file (starts with an underscore).
filePath
bool isPrivateFileName(String filePath) { final fileName = getBaseName(filePath); return fileName.startsWith('_'); }