Index: sources/gui/GuiView.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r0b6611793edf5c79eec8505c1d7682703a0f9ff7 --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 0b6611793edf5c79eec8505c1d7682703a0f9ff7) @@ -17,6 +17,7 @@ #include "GuiView.h" #include "GuiController.h" #include "DeviceController.h" +#include "FileHandler.h" // namespace using namespace Gui; @@ -374,3 +375,15 @@ // 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); +}