SE450: Using Eclipse: Uploading a manually created zip file [6/10] Previous pageContentsNext page

Some of you are not using eclipse and so are submitted zip files. That's fine, but please be sure that the zip files have the correct folder structure:

            
myhw1/
  |-- InventorySet.java
  |-- InventoryTEST.java
  |-- Record.java
  |-- RecordTEST.java
  |-- VideoObj.java
  |-- VideoTEST.java

Please unzip your file and make sure it has this structure. There should not be more or fewer directories

Here are some correct examples from unzip -l

CORRECT (this is what eclipse creates):
  Length     Date   Time    Name
 --------    ----   ----    ----
       25  09-22-15 13:50   META-INF/MANIFEST.MF
     2969  09-22-15 13:42   myhw1/InventorySet.class
     4352  09-22-15 13:41   myhw1/InventorySet.java
      936  09-22-15 13:42   myhw1/RecordTEST.class
      396  09-22-15 13:41   myhw1/RecordTEST.java
     2506  09-22-15 13:42   myhw1/InventoryTEST.class
     2749  09-22-15 13:41   myhw1/InventoryTEST.java
     1773  09-22-15 13:49   myhw1/VideoObj.class
     2978  09-22-15 13:49   myhw1/VideoObj.java
     1095  09-22-15 13:42   myhw1/Record.class
     1590  09-22-15 13:41   myhw1/Record.java
     1949  09-22-15 13:47   myhw1/VideoTEST.class
     1549  09-22-15 13:47   myhw1/VideoTEST.java
 --------                   -------
    24867                   13 files

CORRECT (This is what a manual zip should create):
  Length     Date   Time    Name
 --------    ----   ----    ----
     4682  09-21-15 21:18   myhw1/InventorySet.java
     2800  09-21-15 21:41   myhw1/InventoryTEST.java
     1590  09-20-15 14:07   myhw1/Record.java
      397  09-20-15 23:02   myhw1/RecordTEST.java
     3593  09-20-15 21:16   myhw1/VideoObj.java
     3261  09-20-15 20:55   myhw1/VideoTEST.java
 --------                   -------
    16323                   6 files

Here are some incorrect examples from unzip -l

NOT CORRECT (too many directories!):
  Length     Date   Time    Name
 --------    ----   ----    ----
     4682  09-21-15 21:18   se450/src/myhw1/InventorySet.java
     2800  09-21-15 21:41   se450/src/myhw1/InventoryTEST.java
     1590  09-20-15 14:07   se450/src/myhw1/Record.java
      397  09-20-15 23:02   se450/src/myhw1/RecordTEST.java
     3593  09-20-15 21:16   se450/src/myhw1/VideoObj.java
     3261  09-20-15 20:55   se450/src/myhw1/VideoTEST.java
 --------                   -------
    16323                   6 files

NOT CORRECT (too few directories!):
  Length     Date   Time    Name
 --------    ----   ----    ----
     4608  09-21-15 22:49   InventorySet.java
     3209  09-21-15 22:55   InventoryTEST.java
     1590  09-16-15 19:36   Record.java
      396  09-16-15 19:36   RecordTEST.java
     3939  09-21-15 22:08   VideoObj.java
     3449  09-20-15 15:08   VideoTEST.java
 --------                   -------
    17191                   6 files

Previous pageContentsNext page