function relPath2Cartella(p) { const parts = p.split('/').filter(Boolean); return parts.slice(3).join('/'); } module.exports = { relPath2Cartella };