Hi.
The issue I am having is that the Folder.DeleteTree action seems not to work in case of symbolic link paths. Even worse - it seems to "de-link" the whole path. Is there any way to troubleshoot this kind of issue?
It seems that the Folder.DeleteTree does not remove the actual folder but instead de-links this folder and all folders at all levels above, in the folder tree.
Thank for any help
The issue I am having is that the Folder.DeleteTree action seems not to work in case of symbolic link paths. Even worse - it seems to "de-link" the whole path. Is there any way to troubleshoot this kind of issue?
Code:
-->> Warning message if a certain file of v1.0 is found: -->> 1st file test result = Folder.DoesExist("%AppFolder%" .. "\\folder2"); --check if this file exists at a certain path to check if the scenery installed if result == true then repeat DialogResult = Dialog.Message("Previous version of "..productname.." is installed!", DialogLines, MB_YESNO, MB_ICONQUESTION, MB_DEFBUTTON1); --warning message about confirmed existence of the previous version if (DialogResult == IDNO) then Dialog.Message("Manual removal", DialogFolders, MB_OK, MB_ICONEXCLAMATION); else Folder.DeleteTree("%AppFolder%" .. "\\folder1", nil); Folder.DeleteTree("%AppFolder%" .. "\\folder2", nil);
Thank for any help

Comment