Index: sources/gui/GuiView.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r7d6fa45cd6ab5806153706ce7092872220678de3 --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 7d6fa45cd6ab5806153706ce7092872220678de3) @@ -17,6 +17,7 @@ #include "GuiView.h" #include "GuiController.h" #include "DeviceController.h" +#include "FileHandler.h" // namespace using namespace Gui; @@ -374,3 +375,16 @@ // TODO : the space check should also be done for the USB as destination but needs calculation and will be done later. // usbIsLow ( vPercent <= Storage::Available_Space_Percent ); } + + +/*! + * \brief GuiView::isPathSymLink + * \details Determines if the path passed is a symlink + * \param vFilePath - the targeted filepath to check + * \return true if path is a symbolic link, false otherwise + */ +bool GuiView::isPathSymLink(const QString vFilePath ) +{ + // TODO to be removed when model added for export log + return Storage::FileHandler::isPathSymLink(vFilePath); +}