i did read the following thread:
How to get a list of the filenames of the figures embedded in a document
and found myself in a similar problem. The actual problem is that the filenames printed by the accepted solution in the thread mentioned do not have any linking to the actual figure numbering. Ofcourse they occur in the order the figures do in the text. But I not only pass on the PDF produced I also do pass on the images included (or not) in the document just in case they got rendered unreadable by scaling, typesetting, low quality printouts, duplication of existing print versions etc. Therefor I do usually include a table that shows the number of the figure in one column and the filename in the next one. Just to make things 'idiot-proof'. Now the solution shown in the thread mentioned is very promising so far but how do I get the numbers in there automatically as well. Pressing it all into a 'tabular' should not be too hard in my opinion…
I am using pages like the one produced by this Code (although this may be the most extreme example through out the whole document)
\section{Illustrationen}
Hier seien nun illustrativ Bildschirminhalte für die dargestellte Menüführung abgebildet.
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2913px,natheight=633px]{img/LCD-Menu/statusanzeige.jpg}
\caption{LCD-Menü: Statusanzeige}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2785px,natheight=657px]{img/LCD-Menu/zeit.jpg}
\caption{LCD-Menü: Status\textbackslash{}Zeitanzeige}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=1905px,natheight=395px]{img/LCD-Menu/aktTemp.jpg}
\caption{LCD-Menü: Status\textbackslash{}Temperaturanzeige}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2401px,natheight=633px]{img/LCD-Menu/schaltzustand.jpg}
\caption{LCD-Menü: Status\textbackslash{}Schaltzustandsanzeige}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2529px,natheight=593px]{img/LCD-Menu/schaltschwellen.jpg}
\caption{LCD-Menü: Status\textbackslash{}Schaltschwellen}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=3065px,natheight=697px]{img/LCD-Menu/konfig.jpg}
\caption{LCD-Menü: Konfig.}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2129px,natheight=477px]{img/LCD-Menu/anzLasten1.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Anzahl der Lasten $=1$}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2121px,natheight=497px]{img/LCD-Menu/anzLasten2.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Anzahl der Lasten $=2$}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2525px,natheight=589px]{img/LCD-Menu/0PunktAbgl-.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Offset negativ}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2785px,natheight=585px]{img/LCD-Menu/0PunktAbgl+.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Offset positiv}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2397px,natheight=581px]{img/LCD-Menu/setzeSchaltschwellen.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Schaltschwellen setzen}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2313px,natheight=493px]{img/LCD-Menu/schwellenheizer.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Schaltschwellen\textbackslash{}Heizer}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2873px,natheight=665px]{img/LCD-Menu/heizeroben.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Schaltschwellen\textbackslash{}Heizer\textbackslash{}Obere Schwelle}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2705px,natheight=537px]{img/LCD-Menu/heizerunten.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Schaltschwellen\textbackslash{}Heizer\textbackslash{}Untere Schwelle}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2705px,natheight=537px]{img/LCD-Menu/schwellenkuehler.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Schaltschwellen\textbackslash{}Kühler}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2497px,natheight=577px]{img/LCD-Menu/kuehleroben.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Schaltschwellen\textbackslash{}Kühler\textbackslash{}Obere Schwelle}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2497px,natheight=577px]{img/LCD-Menu/kuehlerunten.jpg}
\caption{LCD-Menü: Konfig.\textbackslash{}Schaltschwellen\textbackslash{}Kühler\textbackslash{}Untere Schwelle}
\end{figure}
\begin{figure}[H]
\includegraphics[width=\columnwidth,natwidth=2853px,natheight=645px]{img/LCD-Menu/wertuebernehmen.jpg}
\caption{LCD-Menü: Dialog \inQuotes{Wert übernehmen}}
\end{figure}
and in the main file
many many stuff
\bibliography{literatur} %Eine Datei 'literatur.bib' wird hierfür benötigt.
\clearpage
\addcontentsline{toc}{chapter}{Abbildungsverzeichnis}
\setlength{\cftfignumwidth}{3em}
\listoffigures
\end{document}

figureenvironment, and then using the normal\listoffigures? – Alan Munn Feb 03 '19 at 19:12