Пример #1
0
        private void ProcessNewFile(FileCreated message)
        {
            if (!message.Path.EndsWith("zip")) return;

            Directory dir = new ZipFileDirectory(PathName.GetPathName(message.Path));
            try
            {
                _actionToTake(dir);
            }
            catch (Exception ex)
            {
                string msg = "There was an error processing the stream package '{0}'".FormatWith(message.Path);
                throw new StreamPackageException(msg, ex);
            }
        }
Пример #2
0
 void ProcessNewFile(FileCreated message)
 {
     if (message.Path.EndsWith("bottle"))
     {
         Directory dir = new ZipFileDirectory(PathName.GetPathName(message.Path));
         try
         {
             _actionToTake(dir);
         }
         catch (Exception ex)
         {
             string msg = "There was an error processing the bottle '{0}'".FormatWith(message.Path);
             throw new BottleException(msg, ex);
         }
     }
 }
Пример #3
0
 public void A_ZippedFile_Directory()
 {
     _zf = new ZipFileDirectory(new RelativePathName(_zippedFile));
 }