Example #1
0
        protected void ProcessEvent(ref int filesExtracted, IEntry entry, bool suppressNestedScriptWarning)
        {
            if (entry.IsDirectory)
            {
                return;
            }

            filesExtracted++;

            if (!suppressNestedScriptWarning)
            {
                GenericPackageExtractor.WarnIfScriptInSubFolder(entry.Key);
            }
        }
Example #2
0
 static void WriteSymbolicLink(string sourcepath, string targetpath)
 {
     GenericPackageExtractor.WarnUnsupportedSymlinkExtraction(sourcepath);
 }