New oddities in Debug AND FolderItem.Unzip

  1. .Unzip… place the files in the passed Folder.
    SO: ADD A FOLDER TO RECEIVE THE unzipped files.

macOS built-in Zip application creates a folder and place the files inside.

  1. The code below does not works:

Loc_FI.Unzip(Issue_Fldr_FI.Child(Loc_FI.Name))

It crash telling it needs a Folder

  1. Unable to debug:

Step does not works,
Some Properties lines shows the rainbow Cursor, while other get the arrow Cursor
Moving the Code Editor Lines either with the TouchPad and with the Mouse Wheel does nothing.
At last, the Finder is also impacted. I cannot move the Folder I created some lines above the code (Code in part 2 on this entry top)

It is hard to think this software was released in 1998, neraly 30 years ago (28 y/a).

Have you made sure that Issue_Fldr_FI.Child(Loc_FI.Name) is an existing (!) folder?

How about

Var destinationFolder As FolderItem = Issue_Fldr_FI.Child(Loc_FI.Name)
If Not destinationFolder.Exists Then destinationFolder.CreateFolder
Loc_FI.Unzip destinationFolder

For added safety you could also check whether destinationFolder, if it exists, is actually a folder (and not a file).