I need to create a figure like the following one

An image shows a directory tree using folders icons. What do you suggest me to do?
I need to create a figure like the following one

An image shows a directory tree using folders icons. What do you suggest me to do?
Here's one possibility using forest and TikZ:

The code:
\documentclass{article}
\usepackage{forest}
\definecolor{fblue}{RGB}{92,144,192}
\definecolor{fgreen}{RGB}{34,162,70}
\newcommand\myfolder[2][fblue]{%
\begin{tikzpicture}[overlay]
\draw[fill=#1!82!black]
(-20pt,14pt) --
(-17pt,17pt) --
(-1pt,17pt) --
(1pt,19pt) --
(12pt,19pt) --
(14pt,17pt) --
(17pt,17pt) --
(20pt,14pt) -- cycle;
\draw[line width=0.75pt,white]
(-18.5pt,14pt) --
(-15.5pt,16.5pt) --
(0.5pt,16.5pt) --
(2pt,18.3pt) --
(10.5pt,18.3pt) --
(12.5pt,16.5pt) --
(15.5pt,16.5pt) --
(18.5pt,14pt) -- cycle;
\draw[rounded corners,top color=#1,bottom color=#1!30]
(-23pt,14pt) --
(23pt,14pt) --
(21pt,-14pt) --
(-21pt,-14pt) -- cycle;
\draw[rounded corners,line width=1pt,white]
(-22pt,13pt) --
(22pt,13pt) --
(20pt,-13pt) --
(-20pt,-13pt) -- cycle;
\end{tikzpicture}%
\makebox[0pt]{\raisebox{-3pt}{{\ttfamily\small/#2}}}%
}
\begin{document}
\begin{forest}
for tree={
parent anchor=south,
child anchor=north,
node options={inner sep=11pt},
l sep=25pt,
s sep=40pt,
}
[\myfolder{}
[\myfolder{bin}]
[\myfolder{dev}]
[{\myfolder[fgreen]{home}}
[{\myfolder[fgreen]{anna}}]
[{\myfolder[fgreen]{claudio}}]
]
[\myfolder{media}]
[\myfolder{mnt}]
[\myfolder{usr}]
]
\end{forest}
\end{document}
The command \myfolder has one mandatory argument for the label of the folder and an optional argument for the color.
/ symbol in /home and other folders? I made this mistake when I created the example image
– Germano Massullo
Nov 12 '14 at 15:00
\makebox[0pt]{\raisebox{-3pt}{{\ttfamily\small/#2}}}, so now it is \makebox[0pt]{\raisebox{-3pt}{{\ttfamily\small #2}}}.
– Gonzalo Medina
Nov 12 '14 at 15:04
Here's a forest solution:
\documentclass[tikz,border=5pt]{standalone}
\usepackage{forest}
\usetikzlibrary{shapes.geometric}
\begin{document}
\tikzset{/forest,
symlink/.append style={
opacity=.25,
text opacity=.5,
before drawing tree={
{tikz+={\draw [thick, -{>[]}] (!#1.west) ++(4pt,-1.5pt) arc (315:120:5pt);}}
},
},
}
\begin{forest}
for tree={
parent anchor=south,
child anchor=north,
trapezium,
trapezium angle=95,
rounded corners=2pt,
draw,
fill=blue!50,
}
[/
[/bin, symlink
]
[/boot
]
[/dev
]
[/etc
]
[/home, fill=green!50, for children={fill=green!50}
[Gwen
]
[Dai
]
]
[/mnt
]
[/sbin, symlink
]
[/usr
]
[/var
]
]
\end{forest}
\end{document}

forestpackage? – ajeh Nov 11 '14 at 21:41\documentclass{}...\begin{document}etc. As it is, most of our users will be very reluctant to touch your question, and you are left to the mercy of our procrastination team who are very few in number and very picky about selecting questions. You can improve your question by adding a minimal working example (MWE) that more users can copy/paste onto their systems to work on. If no hero takes the challenge we might have to close your question. – cfr Nov 11 '14 at 22:24write-inside-folder-iconsamong its default options? I think you will wait a long time for a solution in that case ;). – cfr Nov 11 '14 at 22:25/binis now a symbolic link on most systems. (Those which follow the newer standards for the hierarchy. Admittedly, it is a mixed bag at the moment.) Likewise,/mediais no longer in the top level on many systems. – cfr Nov 11 '14 at 22:29/binthat is true, but for/media... this is a # ls / on Fedora 21 http://paste.fedoraproject.org/150158/17663141/ – Germano Massullo Nov 12 '14 at 18:45