Exemple #1
0
 public ZipListItem(ZipListItemType type, FilePath item, FilePath pathInZip)
 {
     Type = type;
     Item = item.Path;
     PathInZip = pathInZip;
 }
Exemple #2
0
 public ZipListItem(ZipListItemType type, string item, FilePath pathInZip)
 {
     Type = type;
     Item = item;
     PathInZip = pathInZip;
 }
Exemple #3
0
 public ZipListItem(ZipListItemType type, FileName item, FilePath pathInZip)
 {
     Type = type;
     Item = item.FullName;
     PathInZip = pathInZip;
 }
Exemple #4
0
 public ZipListItem(ZipListItemType type, string item, string pathInZip)
 {
     Type = type;
     Item = item;
     PathInZip = new FilePath(pathInZip);
 }