Home
last modified time | relevance | path

Searched refs:zipFileName (Results 1 – 25 of 102) sorted by relevance

12345

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.Compression.ZipFile/tests/
H A DZipFileConvenienceMethods.netcoreapp1.1.cs21 string zipFileName = zfile("normal.zip"); in ExtractToDirectoryOverwrite()
26 ZipFile.ExtractToDirectory(zipFileName, tempFolder.Path, overwriteFiles: false); in ExtractToDirectoryOverwrite()
27 …Assert.Throws<IOException>(() => ZipFile.ExtractToDirectory(zipFileName, tempFolder.Path /* defaul… in ExtractToDirectoryOverwrite()
28 …Assert.Throws<IOException>(() => ZipFile.ExtractToDirectory(zipFileName, tempFolder.Path, overwrit… in ExtractToDirectoryOverwrite()
29 ZipFile.ExtractToDirectory(zipFileName, tempFolder.Path, overwriteFiles: true); in ExtractToDirectoryOverwrite()
38 string zipFileName = zfile("normal.zip"); in ExtractToDirectoryOverwriteEncoding()
43 … ZipFile.ExtractToDirectory(zipFileName, tempFolder.Path, Encoding.UTF8, overwriteFiles: false); in ExtractToDirectoryOverwriteEncoding()
44 …Assert.Throws<IOException>(() => ZipFile.ExtractToDirectory(zipFileName, tempFolder.Path, Encoding… in ExtractToDirectoryOverwriteEncoding()
46 … ZipFile.ExtractToDirectory(zipFileName, tempFolder.Path, Encoding.UTF8, overwriteFiles: true); in ExtractToDirectoryOverwriteEncoding()
55 string zipFileName = zfile("normal.zip"); in ExtractToDirectoryZipArchiveOverwrite()
[all …]
/dports/www/otter-browser/otter-browser-1.0.03/packaging/
H A Dotter-browser.ps189 $7zipFileName = $Global:outputPath + $packageName + ".7z" in main()
90 $zipFileName = $Global:outputPath + $packageName + ".zip" in main() variable
110 fullBuild $7zipFileName $zipFileName in main()
115 function fullBuild ($7zipFileName, $zipFileName) in fullBuild() argument
118 …Start-Process -NoNewWindow -Wait $Global:7ZipBinaryPath -ArgumentList "a", $7zipFileName, ($Global… in fullBuild()
119 …-NoNewWindow -Wait $Global:7ZipBinaryPath -ArgumentList "a", "-tzip", $zipFileName, $Global:inputP… in fullBuild()
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/SharpZipLib/ICSharpCode.SharpZipLib.Samples/cs/zf/
H A Dzf.cs619 var zipFileName = fileSpecs[0] as string; in Create()
622 zipFileName = Path.ChangeExtension(zipFileName, ".zip"); in Create()
965 var zipFileName = fileSpecs[0] as string; in Test()
968 zipFileName = Path.ChangeExtension(zipFileName, ".zip"); in Test()
1003 var zipFileName = fileSpecs[0] as string; in Delete()
1006 zipFileName = Path.ChangeExtension(zipFileName, ".zip"); in Delete()
1066 var zipFileName = fileSpecs[0] as string; in Add()
1069 zipFileName = Path.ChangeExtension(zipFileName, ".zip"); in Add()
1078 if ( File.Exists(zipFileName) ) in Add()
1080 zipFile = new ZipFile(zipFileName); in Add()
[all …]
/dports/graphics/pencil2d/pencil-0.6.6/util/
H A Dafter-build.ps169 $zipFileName = "pencil2d-$arch-$today.zip" variable
71 echo ">>> Zip filename: $zipFileName" variable
72 Rename-Item -Path "./Pencil2D.zip" -NewName $zipFileName variable
75 Test-Path $zipFileName variable
93 $fullPath = Convert-Path "..\build\$zipFileName"
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/monodoc/Monodoc/storage/
H A DZipStorage.cs14 string zipFileName; field in Monodoc.Storage.ZipStorage
21 public ZipStorage (string zipFileName) in ZipStorage() argument
23 this.zipFileName = zipFileName; in ZipStorage()
105 zipOutput = new ZipOutputStream (File.Create (zipFileName)); in EnsureOutput()
114 zipFile = new ZipFile (zipFileName); in EnsureInput()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/internal/lsif_transformer/parser/
H A Dparser_test.go49 zipFileName := tmpDir + ".zip"
50 w, err := os.Create(zipFileName)
52 defer os.RemoveAll(zipFileName)
58 extractZipFiles(t, tmpDir, zipFileName)
61 func extractZipFiles(t *testing.T, tmpDir, zipFileName string) {
62 zipReader, err := zip.OpenReader(zipFileName)
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/SharpZipLib/ICSharpCode.SharpZipLib.Samples/cs/sz/
H A Dsz.cs916 if (Path.GetExtension(zipFileName).Length == 0) { in Create()
917 zipFileName = Path.ChangeExtension(zipFileName, ".zip"); in Create()
1130 var zipFileName = fileSpecs[0] as string; in Test()
1131 if (Path.GetExtension(zipFileName).Length == 0) { in Test()
1132 zipFileName = Path.ChangeExtension(zipFileName, ".zip"); in Test()
1150 var zipFileName = fileSpecs[0] as string; in Delete()
1151 if (Path.GetExtension(zipFileName).Length == 0) { in Delete()
1152 zipFileName = Path.ChangeExtension(zipFileName, ".zip"); in Delete()
1166 var zipFileName = fileSpecs[0] as string; in Add()
1167 if (Path.GetExtension(zipFileName).Length == 0) { in Add()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/Zip/
H A DFastZip.cs186 …public void CreateZip(string zipFileName, string sourceDirectory, bool recurse, string fileFilter,… in CreateZip() argument
191 outputStream = new ZipOutputStream(File.Create(zipFileName)); in CreateZip()
212 public void CreateZip(string zipFileName, string sourceDirectory, bool recurse, string fileFilter) in CreateZip() argument
214 CreateZip(zipFileName, sourceDirectory, recurse, fileFilter, null); in CreateZip()
223 public void ExtractZip(string zipFileName, string targetDirectory, string fileFilter) in ExtractZip() argument
225 ExtractZip(zipFileName, targetDirectory, Overwrite.Always, null, fileFilter, null); in ExtractZip()
237 public void ExtractZip(string zipFileName, string targetDirectory, in ExtractZip() argument
250 inputStream = new ZipInputStream(File.OpenRead(zipFileName)); in ExtractZip()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/Tools/OgreZip2Cpp/src/
H A DOgreZip2Cpp.cpp66 std::string zipFileName = fileNameWithoutExt + ".zip"; in main() local
67 std::string cppFileName = zipFileName + ".cpp"; in main()
74 if (stat(zipFileName.c_str(), &results) == 0) in main()
95 roStream.open(zipFileName.c_str(), std::ifstream::in | std::ifstream::binary); in main()
122 …+= sprintf(outFileDataPos, "\t%s() : fileName(\"%s\")\n", structName.c_str(), zipFileName.c_str()); in main()
/dports/graphics/ogre3d/ogre-1.11.6/Tools/OgreZip2Cpp/src/
H A DOgreZip2Cpp.cpp66 std::string zipFileName = fileNameWithoutExt + ".zip"; in main() local
67 std::string cppFileName = zipFileName + ".cpp"; in main()
74 if (stat(zipFileName.c_str(), &results) == 0) in main()
95 roStream.open(zipFileName.c_str(), std::ifstream::in | std::ifstream::binary); in main()
122 …+= sprintf(outFileDataPos, "\t%s() : fileName(\"%s\")\n", structName.c_str(), zipFileName.c_str()); in main()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java417 final File zipFileName; field in JavacFileManager.MissingArchive
419 zipFileName = name; in MissingArchive()
442 return "MissingArchive[" + zipFileName + "]"; in toString()
475 File origZipFileName = zipFileName; in openArchive()
485 zipFileName = file; in openArchive()
497 zdir = new ZipFile(zipFileName); in openArchive()
524 if (origZipFileName == zipFileName) { in openArchive()
548 archive = new MissingArchive(zipFileName); in openArchive()
552 if (zipFileName.exists()) in openArchive()
553 log.error("error.reading.file", zipFileName, getMessage(ex)); in openArchive()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java417 final File zipFileName; field in JavacFileManager.MissingArchive
419 zipFileName = name; in MissingArchive()
442 return "MissingArchive[" + zipFileName + "]"; in toString()
475 File origZipFileName = zipFileName; in openArchive()
485 zipFileName = file; in openArchive()
497 zdir = new ZipFile(zipFileName); in openArchive()
524 if (origZipFileName == zipFileName) { in openArchive()
548 archive = new MissingArchive(zipFileName); in openArchive()
552 if (zipFileName.exists()) in openArchive()
553 log.error("error.reading.file", zipFileName, getMessage(ex)); in openArchive()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/search/
H A DHierarchyScope.java106 String zipFileName; in HierarchyScope() local
109 zipFileName = jarPath.toString(); in HierarchyScope()
112 zipFileName = ((File)target).getPath(); in HierarchyScope()
120 zipFileName in HierarchyScope()
128 zipFileName in HierarchyScope()
174 String zipFileName; in buildResourceVector() local
177 zipFileName = jarPath.toString(); in buildResourceVector()
180 zipFileName = ((File)target).getPath(); in buildResourceVector()
189 zipFileName in buildResourceVector()
197 zipFileName in buildResourceVector()
/dports/devel/staf/src/staf/services/zip/win32/
H A DSTAFZipFile.cpp36 zipFileName = zfName; in STAFZipFile()
47 zipFileName + "] due to a seek error"; in STAFZipFile()
59 zipFileName + "] due to a tell error"; in STAFZipFile()
78 "beginning of zip file [") + zipFileName + in STAFZipFile()
91 "beginning of zip file [") + zipFileName + in STAFZipFile()
307 if (zipFileName != NULL) in zipDir()
308 zipFileBackupName = zipFileName + ".ZIP"; in zipDir()
355 if ((entryName == zipFileName) || in zipDir()
422 if ((entryName == zipFileName) || in zipDir()
/dports/archivers/p5-Archive-Zip/Archive-Zip-1.68/examples/
H A Dzipinfo.pl33 my $zipFileName = shift(@ARGV);
36 $fh->readFromFile($zipFileName) or exit($!);
43 ($status, $eocdPosition) = $zip->_readEndOfCentralDirectory($fh, $zipFileName);
79 Archive::Zip::Member->_newFromZipFile($fh, "($zipFileName)", $zip->{'zip64'});
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/SharpZipLib/ICSharpCode.SharpZipLib.Shared/Zip/
H A DFastZip.cs291 public void CreateZip(string zipFileName, string sourceDirectory, in CreateZip() argument
294 CreateZip(File.Create(zipFileName), sourceDirectory, recurse, fileFilter, directoryFilter); in CreateZip()
304 public void CreateZip(string zipFileName, string sourceDirectory, bool recurse, string fileFilter) in CreateZip() argument
306 CreateZip(File.Create(zipFileName), sourceDirectory, recurse, fileFilter, null); in CreateZip()
359 public void ExtractZip(string zipFileName, string targetDirectory, string fileFilter) in ExtractZip() argument
361 …ExtractZip(zipFileName, targetDirectory, Overwrite.Always, null, fileFilter, null, restoreDateTime… in ExtractZip()
374 public void ExtractZip(string zipFileName, string targetDirectory, in ExtractZip() argument
378 Stream inputStream = File.Open(zipFileName, FileMode.Open, FileAccess.Read, FileShare.Read); in ExtractZip()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/tools/jar/
H A DLeadingGarbage.java109 void assertCanList(String zipFileName) throws Throwable {
110 OutputAnalyzer a = jar("tf", zipFileName);
129 void assertCanExtract(String zipFileName) throws Throwable {
130 OutputAnalyzer a = jar("xf", zipFileName);
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/tools/jar/
H A DLeadingGarbage.java109 void assertCanList(String zipFileName) throws Throwable {
110 OutputAnalyzer a = jar("tf", zipFileName);
129 void assertCanExtract(String zipFileName) throws Throwable {
130 OutputAnalyzer a = jar("xf", zipFileName);
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/tools/jar/
H A DLeadingGarbage.java109 void assertCanList(String zipFileName) throws Throwable {
110 OutputAnalyzer a = jar("tf", zipFileName);
129 void assertCanExtract(String zipFileName) throws Throwable {
130 OutputAnalyzer a = jar("xf", zipFileName);
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/tools/jar/
H A DLeadingGarbage.java109 void assertCanList(String zipFileName) throws Throwable {
110 OutputAnalyzer a = jar("tf", zipFileName);
129 void assertCanExtract(String zipFileName) throws Throwable {
130 OutputAnalyzer a = jar("xf", zipFileName);
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/tools/jar/
H A DLeadingGarbage.java109 void assertCanList(String zipFileName) throws Throwable {
110 OutputAnalyzer a = jar("tf", zipFileName);
129 void assertCanExtract(String zipFileName) throws Throwable {
130 OutputAnalyzer a = jar("xf", zipFileName);
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/tools/jar/
H A DLeadingGarbage.java109 void assertCanList(String zipFileName) throws Throwable {
110 OutputAnalyzer a = jar("tf", zipFileName);
129 void assertCanExtract(String zipFileName) throws Throwable {
130 OutputAnalyzer a = jar("xf", zipFileName);
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/tools/jar/
H A DLeadingGarbage.java109 void assertCanList(String zipFileName) throws Throwable {
110 OutputAnalyzer a = jar("tf", zipFileName);
129 void assertCanExtract(String zipFileName) throws Throwable {
130 OutputAnalyzer a = jar("xf", zipFileName);
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/tools/jar/
H A DLeadingGarbage.java109 void assertCanList(String zipFileName) throws Throwable {
110 OutputAnalyzer a = jar("tf", zipFileName);
129 void assertCanExtract(String zipFileName) throws Throwable {
130 OutputAnalyzer a = jar("xf", zipFileName);
/dports/devel/staf/src/staf/services/zip/unix/
H A DSTAFZipFile.cpp37 zipFileName = zfName; in STAFZipFile()
48 zipFileName + "] due to a seek error"; in STAFZipFile()
60 zipFileName + "] due to a tell error"; in STAFZipFile()
79 "beginning of zip file [") + zipFileName + in STAFZipFile()
92 "beginning of zip file [") + zipFileName + in STAFZipFile()
352 if (zipFileName != 0) in zipDir()
353 zipFileBackupName = zipFileName + ".ZIP"; in zipDir()
399 if ((entryName == zipFileName) || in zipDir()
475 if ((entryName == zipFileName) || in zipDir()

12345