Deep Space Missing/Corrupted Field Model

Is anyone else having the same issue that i am having with the field model were it wont allow to me extract giving me an error creating a destination file.

Having the same problem I believe it’s because there’s a compressed folder in a compressed folder

Does the program you are using support password protected zip folders?

Team 114 also can’t open the field model. Anyone have any ideas?

I am using Windows file explorer so idk if it does. I have never used that feature previously.

I suggest you try using 7 zip.

1 Like

I’m currently using school technology that blocks the installation of programs. Would be able to attempt to extract it for me? I’m very new to Chief Delphi so i don’t know its capabilities can you upload zip files?

FIRST prohibits us from rehosting material. You can see if it is available for download without encryption. https://www.firstinspires.org/resource-library/frc/competition-manual-qa-system

Ok thanks good luck on this years competition.

This. Windows can’t unzip a password protected folder. Try Winzip or 7 Zip.

To use the encrypted .zip files you will need to use either Windows XP or a software that allows the decryption using a password. 7-Zip and PeaZip are good options for Windows while iZip and The Unarchiver are good options for Mac.

1 Like

A friend of mine came up with a simple solution to the password protected zip file problem:

Download Zip4j and use it to extract the file. The password is the same as the manual.

use this code:

String source = “[path to zip file]”
String dest = “[folder to extract files to]”
String psk = “$Robots&in#SPACE!!”

try {
net.lingala.zip4j.core.ZipFile zip = new ZipFile(source);
zip.setPassword(psk);
zip.extractAll(dest);
} catch (Exception e) {
e.printStackTrace();
}

This is an option it has worked mostly (with the exception of a few errors that i’m looking into)