Similarlly, how would one remap l to only move right and refrain from opening/running files?
If by moving right you mean entering directories, then this should do:
nnoremap <silent> l
\ : if filetype('.', 1) == 'dir'
\ | execute 'normal! l'
\ | endif<cr>