I see this is one option:
c:$\backslash$subd1$\backslash$subsubd1
for representing
c:\subd1\subsubd1
is there something that leaves the TeX a bit more human-readable, such as
\escape{c:\subd1\subsubd1}
I see this is one option:
c:$\backslash$subd1$\backslash$subsubd1
for representing
c:\subd1\subsubd1
is there something that leaves the TeX a bit more human-readable, such as
\escape{c:\subd1\subsubd1}
The package url provides also the command \path{}:
\usepackage{url}%loaded by hyperref by default
.....
\path{c:\subd1\subsubd1}
Here the small MWE:
\documentclass{article}
\usepackage{url}
\begin{document}
\path{c:\subd1\subsubd1}
\end{document}
\textbackslashwhich you can use instead of$\backslash$. – Martin Scharrer Jul 02 '13 at 16:38