You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

System.IO.Compression.ZipFile.xml 38 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>System.IO.Compression.ZipFile</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.IO.Compression.ZipFile">
  8. <summary>Zip 보관 파일 만들기, 추출 및 열기를 위한 정적 메서드를 제공합니다. </summary>
  9. </member>
  10. <member name="M:System.IO.Compression.ZipFile.CreateFromDirectory(System.String,System.String)">
  11. <summary>지정된 디렉터리에서 파일 및 디렉터리를 포함하는 Zip 보관 파일을 만듭니다.</summary>
  12. <param name="sourceDirectoryName">보관되는 디렉터리의 경로(상대 또는 절대 경로로 지정)입니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  13. <param name="destinationArchiveFileName">만들 보관 파일의 경로(상대 또는 절대 경로로 지정)입니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  14. <exception cref="T:System.ArgumentException">
  15. <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" /> is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.</exception>
  16. <exception cref="T:System.ArgumentNullException">
  17. <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" /> is null.</exception>
  18. <exception cref="T:System.IO.PathTooLongException">In <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" />, the specified path, file name, or both exceed the system-defined maximum length.For example, on Windows-based platforms, paths must not exceed 248 characters, and file names must not exceed 260 characters.</exception>
  19. <exception cref="T:System.IO.DirectoryNotFoundException">
  20. <paramref name="sourceDirectoryName" /> is invalid or does not exist (for example, it is on an unmapped drive).</exception>
  21. <exception cref="T:System.IO.IOException">
  22. <paramref name="destinationArchiveFileName" /> already exists.-or-A file in the specified directory could not be opened.</exception>
  23. <exception cref="T:System.UnauthorizedAccessException">
  24. <paramref name="destinationArchiveFileName" /> specifies a directory.-or-The caller does not have the required permission to access the directory specified in <paramref name="sourceDirectoryName" /> or the file specified in <paramref name="destinationArchiveFileName" />.</exception>
  25. <exception cref="T:System.NotSupportedException">
  26. <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" /> contains an invalid format.-or-The zip archive does not support writing.</exception>
  27. </member>
  28. <member name="M:System.IO.Compression.ZipFile.CreateFromDirectory(System.String,System.String,System.IO.Compression.CompressionLevel,System.Boolean)">
  29. <summary>지정된 디렉터리의 파일 및 디렉터리를 포함하고 지정된 압축 수준을 사용하며 기본 디렉터리를 선택적으로 포함하는 Zip 보관 파일을 듭니다.</summary>
  30. <param name="sourceDirectoryName">보관되는 디렉터리의 경로(상대 또는 절대 경로로 지정)입니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  31. <param name="destinationArchiveFileName">만들 보관 파일의 경로(상대 또는 절대 경로로 지정)입니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  32. <param name="compressionLevel">항목을 만들 때 속도 또는 압축 효율을 강조할지를 나타내는 열거형 값 중 하나입니다.</param>
  33. <param name="includeBaseDirectory">보관 파일 루트에 있는 <paramref name="sourceDirectoryName" />의 디렉터리 이름을 포함하려면 true이고, 디렉터리의 내용만 포함하려면 false입니다.</param>
  34. <exception cref="T:System.ArgumentException">
  35. <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" /> is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.</exception>
  36. <exception cref="T:System.ArgumentNullException">
  37. <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" /> is null.</exception>
  38. <exception cref="T:System.IO.PathTooLongException">In <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" />, the specified path, file name, or both exceed the system-defined maximum length.For example, on Windows-based platforms, paths must not exceed 248 characters, and file names must not exceed 260 characters.</exception>
  39. <exception cref="T:System.IO.DirectoryNotFoundException">
  40. <paramref name="sourceDirectoryName" /> is invalid or does not exist (for example, it is on an unmapped drive).</exception>
  41. <exception cref="T:System.IO.IOException">
  42. <paramref name="destinationArchiveFileName" /> already exists.-or-A file in the specified directory could not be opened.</exception>
  43. <exception cref="T:System.UnauthorizedAccessException">
  44. <paramref name="destinationArchiveFileName" /> specifies a directory.-or-The caller does not have the required permission to access the directory specified in <paramref name="sourceDirectoryName" /> or the file specified in <paramref name="destinationArchiveFileName" />.</exception>
  45. <exception cref="T:System.NotSupportedException">
  46. <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" /> contains an invalid format.-or-The zip archive does not support writing.</exception>
  47. </member>
  48. <member name="M:System.IO.Compression.ZipFile.CreateFromDirectory(System.String,System.String,System.IO.Compression.CompressionLevel,System.Boolean,System.Text.Encoding)">
  49. <summary>지정된 디렉터리의 파일 및 디렉터리를 포함하고 항목 이름에 대해 지정된 압축 수준 및 문자 인코딩을 사용하며 기본 디렉터리를 선택적으로 포함하는 Zip 보관 파일을 만듭니다.</summary>
  50. <param name="sourceDirectoryName">보관되는 디렉터리의 경로(상대 또는 절대 경로로 지정)입니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  51. <param name="destinationArchiveFileName">만들 보관 파일의 경로(상대 또는 절대 경로로 지정)입니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  52. <param name="compressionLevel">항목을 만들 때 속도 또는 압축 효율을 강조할지를 나타내는 열거형 값 중 하나입니다.</param>
  53. <param name="includeBaseDirectory">보관 파일 루트에 있는 <paramref name="sourceDirectoryName" />의 디렉터리 이름을 포함하려면 true이고, 디렉터리의 내용만 포함하려면 false입니다.</param>
  54. <param name="entryNameEncoding">이 보관 파일에서 이름을 읽거나 쓰는 동안 사용할 인코딩입니다.인코딩이 항목 이름에 대해 UTF-8 인코딩을 지원하지 않는 Zip 보관 도구와 라이브러리를 사용하여 상호 운용성에 인코딩이 필요할 때만 이 매개 변수에 대한 값을 지정합니다.</param>
  55. <exception cref="T:System.ArgumentException">
  56. <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" /> is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.-or-<paramref name="entryNameEncoding" /> is set to a Unicode encoding other than UTF-8.</exception>
  57. <exception cref="T:System.ArgumentNullException">
  58. <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" /> is null.</exception>
  59. <exception cref="T:System.IO.PathTooLongException">In <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" />, the specified path, file name, or both exceed the system-defined maximum length.For example, on Windows-based platforms, paths must not exceed 248 characters, and file names must not exceed 260 characters.</exception>
  60. <exception cref="T:System.IO.DirectoryNotFoundException">
  61. <paramref name="sourceDirectoryName" /> is invalid or does not exist (for example, it is on an unmapped drive).</exception>
  62. <exception cref="T:System.IO.IOException">
  63. <paramref name="destinationArchiveFileName" /> already exists.-or-A file in the specified directory could not be opened.</exception>
  64. <exception cref="T:System.UnauthorizedAccessException">
  65. <paramref name="destinationArchiveFileName" /> specifies a directory.-or-The caller does not have the required permission to access the directory specified in <paramref name="sourceDirectoryName" /> or the file specified in <paramref name="destinationArchiveFileName" />.</exception>
  66. <exception cref="T:System.NotSupportedException">
  67. <paramref name="sourceDirectoryName" /> or <paramref name="destinationArchiveFileName" /> contains an invalid format.-or-The zip archive does not support writing.</exception>
  68. </member>
  69. <member name="M:System.IO.Compression.ZipFile.ExtractToDirectory(System.String,System.String)">
  70. <summary>지정된 Zip 보관 파일의 모든 파일을 파일 시스템의 디렉터리에 추출합니다.</summary>
  71. <param name="sourceArchiveFileName">추출되는 보관 파일의 경로입니다.</param>
  72. <param name="destinationDirectoryName">추출된 파일을 배치할 디렉터리의 경로이며 상대 경로 또는 절대 경로로 지정됩니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  73. <exception cref="T:System.ArgumentException">
  74. <paramref name="destinationDirectoryName" /> or <paramref name="sourceArchiveFileName" /> is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.</exception>
  75. <exception cref="T:System.ArgumentNullException">
  76. <paramref name="destinationDirectoryName" /> or <paramref name="sourceArchiveFileName" /> is null.</exception>
  77. <exception cref="T:System.IO.PathTooLongException">The specified path in <paramref name="destinationDirectoryName" /> or <paramref name="sourceArchiveFileName" /> exceeds the system-defined maximum length.For example, on Windows-based platforms, paths must not exceed 248 characters, and file names must not exceed 260 characters.</exception>
  78. <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
  79. <exception cref="T:System.IO.IOException">The directory specified by <paramref name="destinationDirectoryName" /> already exists.-or-The name of an entry in the archive is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.-or-Extracting an archive entry would create a file that is outside the directory specified by <paramref name="destinationDirectoryName" />.(For example, this might happen if the entry name contains parent directory accessors.)-or-An archive entry to extract has the same name as an entry that has already been extracted from the same archive.</exception>
  80. <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission to access the archive or the destination directory.</exception>
  81. <exception cref="T:System.NotSupportedException">
  82. <paramref name="destinationDirectoryName" /> or <paramref name="sourceArchiveFileName" /> contains an invalid format.</exception>
  83. <exception cref="T:System.IO.FileNotFoundException">
  84. <paramref name="sourceArchiveFileName" /> was not found.</exception>
  85. <exception cref="T:System.IO.InvalidDataException">The archive specified by <paramref name="sourceArchiveFileName" /> is not a valid zip archive.-or-An archive entry was not found or was corrupt.-or-An archive entry was compressed by using a compression method that is not supported.</exception>
  86. </member>
  87. <member name="M:System.IO.Compression.ZipFile.ExtractToDirectory(System.String,System.String,System.Text.Encoding)">
  88. <summary>지정된 Zip 보관 파일의 모든 파일을 파일 시스템의 디렉터리에 추출하고 항목 이름에 대한 지정된 문자 인코딩을 사용합니다.</summary>
  89. <param name="sourceArchiveFileName">추출되는 보관 파일의 경로입니다.</param>
  90. <param name="destinationDirectoryName">추출된 파일을 배치할 디렉터리의 경로이며 상대 경로 또는 절대 경로로 지정됩니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  91. <param name="entryNameEncoding">이 보관 파일에서 이름을 읽거나 쓰는 동안 사용할 인코딩입니다.인코딩이 항목 이름에 대해 UTF-8 인코딩을 지원하지 않는 Zip 보관 도구와 라이브러리를 사용하여 상호 운용성에 인코딩이 필요할 때만 이 매개 변수에 대한 값을 지정합니다.</param>
  92. <exception cref="T:System.ArgumentException">
  93. <paramref name="destinationDirectoryName" /> or <paramref name="sourceArchiveFileName" /> is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.-or-<paramref name="entryNameEncoding" /> is set to a Unicode encoding other than UTF-8.</exception>
  94. <exception cref="T:System.ArgumentNullException">
  95. <paramref name="destinationDirectoryName" /> or <paramref name="sourceArchiveFileName" /> is null.</exception>
  96. <exception cref="T:System.IO.PathTooLongException">The specified path in <paramref name="destinationDirectoryName" /> or <paramref name="sourceArchiveFileName" /> exceeds the system-defined maximum length.For example, on Windows-based platforms, paths must not exceed 248 characters, and file names must not exceed 260 characters.</exception>
  97. <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
  98. <exception cref="T:System.IO.IOException">The directory specified by <paramref name="destinationDirectoryName" /> already exists.-or-The name of an entry in the archive is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.-or-Extracting an archive entry would create a file that is outside the directory specified by <paramref name="destinationDirectoryName" />.(For example, this might happen if the entry name contains parent directory accessors.)-or-An archive entry to extract has the same name as an entry that has already been extracted from the same archive.</exception>
  99. <exception cref="T:System.UnauthorizedAccessException">The caller does not have the required permission to access the archive or the destination directory.</exception>
  100. <exception cref="T:System.NotSupportedException">
  101. <paramref name="destinationDirectoryName" /> or <paramref name="sourceArchiveFileName" /> contains an invalid format.</exception>
  102. <exception cref="T:System.IO.FileNotFoundException">
  103. <paramref name="sourceArchiveFileName" /> was not found.</exception>
  104. <exception cref="T:System.IO.InvalidDataException">The archive specified by <paramref name="sourceArchiveFileName" /> is not a valid zip archive.-or-An archive entry was not found or was corrupt.-or-An archive entry was compressed by using a compression method that is not supported.</exception>
  105. </member>
  106. <member name="M:System.IO.Compression.ZipFile.Open(System.String,System.IO.Compression.ZipArchiveMode)">
  107. <summary>지정된 경로와 지정된 모드에서 Zip 보관 파일을 엽니다.</summary>
  108. <returns>열린 Zip 보관 파일입니다.</returns>
  109. <param name="archiveFileName">열 보관 파일의 경로(상대 또는 절대 경로로 지정)입니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  110. <param name="mode">열린 보관 파일의 항목에서 사용되는 동작을 지정하는 열거형 값 중 하나입니다.</param>
  111. <exception cref="T:System.ArgumentException">
  112. <paramref name="archiveFileName" /> is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.</exception>
  113. <exception cref="T:System.ArgumentNullException">
  114. <paramref name="archiveFileName" /> is null.</exception>
  115. <exception cref="T:System.IO.PathTooLongException">In <paramref name="archiveFileName" />, the specified path, file name, or both exceed the system-defined maximum length.For example, on Windows-based platforms, paths must not exceed 248 characters, and file names must not exceed 260 characters.</exception>
  116. <exception cref="T:System.IO.DirectoryNotFoundException">
  117. <paramref name="archiveFileName" /> is invalid or does not exist (for example, it is on an unmapped drive).</exception>
  118. <exception cref="T:System.IO.IOException">
  119. <paramref name="archiveFileName" /> could not be opened.-or-<paramref name="mode" /> is set to <see cref="F:System.IO.Compression.ZipArchiveMode.Create" />, but the file specified in <paramref name="archiveFileName" /> already exists.</exception>
  120. <exception cref="T:System.UnauthorizedAccessException">
  121. <paramref name="archiveFileName" /> specifies a directory.-or-The caller does not have the required permission to access the file specified in <paramref name="archiveFileName" />.</exception>
  122. <exception cref="T:System.ArgumentOutOfRangeException">
  123. <paramref name="mode" /> specifies an invalid value.</exception>
  124. <exception cref="T:System.IO.FileNotFoundException">
  125. <paramref name="mode" /> is set to <see cref="F:System.IO.Compression.ZipArchiveMode.Read" />, but the file specified in <paramref name="archiveFileName" /> is not found.</exception>
  126. <exception cref="T:System.NotSupportedException">
  127. <paramref name="archiveFileName" /> contains an invalid format.</exception>
  128. <exception cref="T:System.IO.InvalidDataException">
  129. <paramref name="archiveFileName" /> could not be interpreted as a zip archive.-or-<paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" />, but an entry is missing or corrupt and cannot be read.-or-<paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" />, but an entry is too large to fit into memory.</exception>
  130. </member>
  131. <member name="M:System.IO.Compression.ZipFile.Open(System.String,System.IO.Compression.ZipArchiveMode,System.Text.Encoding)">
  132. <summary>지정된 모드의 지정된 경로에서 항목 이름에 대해 지정된 문자 인코딩을 사용하며 Zip 보관 파일을 엽니다.</summary>
  133. <returns>열린 Zip 보관 파일입니다.</returns>
  134. <param name="archiveFileName">열 보관 파일의 경로(상대 또는 절대 경로로 지정)입니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  135. <param name="mode">열린 보관 파일의 엔트리에서 사용되는 동작을 지정하는 열거형 값 중 하나입니다.</param>
  136. <param name="entryNameEncoding">이 보관 파일에서 이름을 읽거나 쓰는 동안 사용할 인코딩입니다.인코딩이 항목 이름에 대해 UTF-8 인코딩을 지원하지 않는 Zip 보관 도구와 라이브러리를 사용하여 상호 운용성에 인코딩이 필요할 때만 이 매개 변수에 대한 값을 지정합니다.</param>
  137. <exception cref="T:System.ArgumentException">
  138. <paramref name="archiveFileName" /> is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.-or-<paramref name="entryNameEncoding" /> is set to a Unicode encoding other than UTF-8.</exception>
  139. <exception cref="T:System.ArgumentNullException">
  140. <paramref name="archiveFileName" /> is null.</exception>
  141. <exception cref="T:System.IO.PathTooLongException">In <paramref name="archiveFileName" />, the specified path, file name, or both exceed the system-defined maximum length.For example, on Windows-based platforms, paths must not exceed 248 characters, and file names must not exceed 260 characters.</exception>
  142. <exception cref="T:System.IO.DirectoryNotFoundException">
  143. <paramref name="archiveFileName" /> is invalid or does not exist (for example, it is on an unmapped drive).</exception>
  144. <exception cref="T:System.IO.IOException">
  145. <paramref name="archiveFileName" /> could not be opened.-or-<paramref name="mode" /> is set to <see cref="F:System.IO.Compression.ZipArchiveMode.Create" />, but the file specified in <paramref name="archiveFileName" /> already exists.</exception>
  146. <exception cref="T:System.UnauthorizedAccessException">
  147. <paramref name="archiveFileName" /> specifies a directory.-or-The caller does not have the required permission to access the file specified in <paramref name="archiveFileName" />.</exception>
  148. <exception cref="T:System.ArgumentOutOfRangeException">
  149. <paramref name="mode" /> specifies an invalid value.</exception>
  150. <exception cref="T:System.IO.FileNotFoundException">
  151. <paramref name="mode" /> is set to <see cref="F:System.IO.Compression.ZipArchiveMode.Read" />, but the file specified in <paramref name="archiveFileName" /> is not found.</exception>
  152. <exception cref="T:System.NotSupportedException">
  153. <paramref name="archiveFileName" /> contains an invalid format.</exception>
  154. <exception cref="T:System.IO.InvalidDataException">
  155. <paramref name="archiveFileName" /> could not be interpreted as a zip archive.-or-<paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" />, but an entry is missing or corrupt and cannot be read.-or-<paramref name="mode" /> is <see cref="F:System.IO.Compression.ZipArchiveMode.Update" />, but an entry is too large to fit into memory.</exception>
  156. </member>
  157. <member name="M:System.IO.Compression.ZipFile.OpenRead(System.String)">
  158. <summary>지정된 경로에서 읽기 위해 Zip 보관 파일을 엽니다.</summary>
  159. <returns>열린 Zip 보관 파일입니다.</returns>
  160. <param name="archiveFileName">열 보관 파일의 경로(상대 또는 절대 경로로 지정)입니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  161. <exception cref="T:System.ArgumentException">
  162. <paramref name="archiveFileName" /> is <see cref="F:System.String.Empty" />, contains only white space, or contains at least one invalid character.</exception>
  163. <exception cref="T:System.ArgumentNullException">
  164. <paramref name="archiveFileName" /> is null.</exception>
  165. <exception cref="T:System.IO.PathTooLongException">In <paramref name="archiveFileName" />, the specified path, file name, or both exceed the system-defined maximum length.For example, on Windows-based platforms, paths must not exceed 248 characters, and file names must not exceed 260 characters.</exception>
  166. <exception cref="T:System.IO.DirectoryNotFoundException">
  167. <paramref name="archiveFileName" /> is invalid or does not exist (for example, it is on an unmapped drive).</exception>
  168. <exception cref="T:System.IO.IOException">
  169. <paramref name="archiveFileName" /> could not be opened.</exception>
  170. <exception cref="T:System.UnauthorizedAccessException">
  171. <paramref name="archiveFileName" /> specifies a directory.-or-The caller does not have the required permission to access the file specified in <paramref name="archiveFileName" />.</exception>
  172. <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="archiveFileName" /> is not found.</exception>
  173. <exception cref="T:System.NotSupportedException">
  174. <paramref name="archiveFileName" /> contains an invalid format.</exception>
  175. <exception cref="T:System.IO.InvalidDataException">
  176. <paramref name="archiveFileName" /> could not be interpreted as a zip archive.</exception>
  177. </member>
  178. <member name="T:System.IO.Compression.ZipFileExtensions">
  179. <summary>
  180. <see cref="T:System.IO.Compression.ZipArchive" /> 및 <see cref="T:System.IO.Compression.ZipArchiveEntry" /> 클래스에 대한 확장 메서드를 제공합니다.</summary>
  181. </member>
  182. <member name="M:System.IO.Compression.ZipFileExtensions.CreateEntryFromFile(System.IO.Compression.ZipArchive,System.String,System.String)">
  183. <summary>파일을 압축하고 ZIP 보관 위치에 추가하여 보관합니다.</summary>
  184. <returns>ZIP 보관 위치에 있는 새 항목에 대한 래퍼입니다.</returns>
  185. <param name="destination">파일을 추가할 zip 보관 위치입니다.</param>
  186. <param name="sourceFileName">보관할 파일의 경로입니다.상대 또는 절대 경로를 지정할 수 있습니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  187. <param name="entryName">zip 보관 위치에 만들 항목의 이름입니다.</param>
  188. <exception cref="T:System.ArgumentException">
  189. <paramref name="sourceFileName" />이 <see cref="F:System.String.Empty" />이거나, 공백만 포함하거나 또는 잘못된 문자를 하나 이상 포함하는 경우또는<paramref name="entryName" />가 <see cref="F:System.String.Empty" />입니다.</exception>
  190. <exception cref="T:System.ArgumentNullException">
  191. <paramref name="sourceFileName" /> 또는 <paramref name="entryName" />가 null인 경우</exception>
  192. <exception cref="T:System.IO.PathTooLongException">
  193. <paramref name="sourceFileName" />에서 지정된 경로, 파일 이름 또는 둘 다가 시스템에 정의된 최대 길이를 초과하는 경우예를 들어, Windows 기반 플랫폼에서는 경로에 248자 미만의 문자를 사용해야 하며 파일 이름에는 260자 미만의 문자를 사용해야 합니다.</exception>
  194. <exception cref="T:System.IO.DirectoryNotFoundException">
  195. <paramref name="sourceFileName" />가 잘못된 경우(예: 매핑되지 않은 드라이브의 경로를 지정한 경우)</exception>
  196. <exception cref="T:System.IO.IOException">
  197. <paramref name="sourceFileName" />으로 지정된 파일을 열 수 없는 경우</exception>
  198. <exception cref="T:System.UnauthorizedAccessException">
  199. <paramref name="sourceFileName" />은 디렉터리를 지정합니다.또는<paramref name="sourceFileName" />에서 지정한 파일에 액세스하는 데 필요한 권한이 호출자에게 없는 경우</exception>
  200. <exception cref="T:System.IO.FileNotFoundException">
  201. <paramref name="sourceFileName" />에서 지정한 파일을 찾을 수 없는 경우</exception>
  202. <exception cref="T:System.NotSupportedException">
  203. <paramref name="sourceFileName" /> 매개 변수가 잘못된 형식인 경우또는zip 보관 위치가 쓰기를 지원하지 않는 경우</exception>
  204. <exception cref="T:System.ObjectDisposedException">zip 보관 위치가 삭제되었습니다.</exception>
  205. </member>
  206. <member name="M:System.IO.Compression.ZipFileExtensions.CreateEntryFromFile(System.IO.Compression.ZipArchive,System.String,System.String,System.IO.Compression.CompressionLevel)">
  207. <summary>지정된 압축 수준을 사용하여 압축하고 zip 보관 저장소에 추가하여 파일을 보관합니다.</summary>
  208. <returns>ZIP 보관 위치에 있는 새 항목에 대한 래퍼입니다.</returns>
  209. <param name="destination">파일을 추가할 zip 보관 위치입니다.</param>
  210. <param name="sourceFileName">보관할 파일의 경로입니다.상대 또는 절대 경로를 지정할 수 있습니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  211. <param name="entryName">zip 보관 위치에 만들 항목의 이름입니다.</param>
  212. <param name="compressionLevel">항목을 만들 때 속도 또는 압축 효율을 강조할지 여부를 나타내는 열거형 값 중 하나입니다.</param>
  213. <exception cref="T:System.ArgumentException">
  214. <paramref name="sourceFileName" />이 <see cref="F:System.String.Empty" />이거나, 공백만 포함하거나 또는 잘못된 문자를 하나 이상 포함하는 경우또는<paramref name="entryName" />가 <see cref="F:System.String.Empty" />입니다.</exception>
  215. <exception cref="T:System.ArgumentNullException">
  216. <paramref name="sourceFileName" /> 또는 <paramref name="entryName" />가 null인 경우</exception>
  217. <exception cref="T:System.IO.DirectoryNotFoundException">
  218. <paramref name="sourceFileName" />가 잘못된 경우(예: 매핑되지 않은 드라이브의 경로를 지정한 경우)</exception>
  219. <exception cref="T:System.IO.PathTooLongException">
  220. <paramref name="sourceFileName" />에서 지정된 경로, 파일 이름 또는 둘 다가 시스템에 정의된 최대 길이를 초과하는 경우예를 들어, Windows 기반 플랫폼에서는 경로에 248자 미만의 문자를 사용해야 하며 파일 이름에는 260자 미만의 문자를 사용해야 합니다.</exception>
  221. <exception cref="T:System.IO.IOException">
  222. <paramref name="sourceFileName" />으로 지정된 파일을 열 수 없는 경우</exception>
  223. <exception cref="T:System.UnauthorizedAccessException">
  224. <paramref name="sourceFileName" />은 디렉터리를 지정합니다.또는<paramref name="sourceFileName" />에서 지정한 파일에 액세스하는 데 필요한 권한이 호출자에게 없는 경우</exception>
  225. <exception cref="T:System.IO.FileNotFoundException">
  226. <paramref name="sourceFileName" />에서 지정한 파일을 찾을 수 없는 경우</exception>
  227. <exception cref="T:System.NotSupportedException">
  228. <paramref name="sourceFileName" /> 매개 변수가 잘못된 형식인 경우또는zip 보관 위치가 쓰기를 지원하지 않는 경우</exception>
  229. <exception cref="T:System.ObjectDisposedException">zip 보관 위치가 삭제되었습니다.</exception>
  230. </member>
  231. <member name="M:System.IO.Compression.ZipFileExtensions.ExtractToDirectory(System.IO.Compression.ZipArchive,System.String)">
  232. <summary>ZIP 보관 파일의 모든 파일을 파일 시스템의 디렉터리에 추출합니다.</summary>
  233. <param name="source">파일의 압축을 풀 zip 보관 위치입니다.</param>
  234. <param name="destinationDirectoryName">추출된 파일을 넣을 디렉터리의 경로입니다.상대 또는 절대 경로를 지정할 수 있습니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  235. <exception cref="T:System.ArgumentException">
  236. <paramref name="destinationDirectoryName" />이 <see cref="F:System.String.Empty" />이거나, 공백만 포함하거나 또는 잘못된 문자를 하나 이상 포함하는 경우</exception>
  237. <exception cref="T:System.ArgumentNullException">
  238. <paramref name="destinationDirectoryName" />가 null입니다.</exception>
  239. <exception cref="T:System.IO.PathTooLongException">지정된 경로가 시스템 정의 최대 길이를 초과합니다.예를 들어, Windows 기반 플랫폼에서는 경로에 248자 미만의 문자를 사용해야 하며 파일 이름에는 260자 미만의 문자를 사용해야 합니다.</exception>
  240. <exception cref="T:System.IO.DirectoryNotFoundException">지정된 경로가 잘못된 경우(예: 매핑되지 않은 드라이브의 경로를 지정한 경우)</exception>
  241. <exception cref="T:System.IO.IOException">
  242. <paramref name="destinationDirectoryName" />에서 지정한 디렉터리가 이미 있는 경우또는보관 파일에 있는 항목의 이름이 <see cref="F:System.String.Empty" /> 상태이며, 이 이름에 공백만 있거나 잘못된 문자가 하나 이상 포함되어 있습니다.또는보관 저장소에서 항목을 추출하면 <paramref name="destinationDirectoryName" />으로 지정된 디렉터리 외부에 파일이 만들어집니다. (예를 들어 항목 이름에 부모 디렉터리 접근자가 포함된 경우 발생할 수 있습니다.) 또는보관 저장소에 있는 둘 이상의 항목이 같은 이름을 갖고 있습니다.</exception>
  243. <exception cref="T:System.UnauthorizedAccessException">호출자에게 대상 디렉터리에 쓸 수 있는 권한이 없는 경우</exception>
  244. <exception cref="T:System.NotSupportedException">
  245. <paramref name="destinationDirectoryName" />에 잘못된 형식이 포함되어 있는 경우</exception>
  246. <exception cref="T:System.IO.InvalidDataException">보관 항목 찾을 수 없거나 손상되었습니다.또는보관 항목이 지원되지 않는 압축 방법으로 압축되었습니다.</exception>
  247. </member>
  248. <member name="M:System.IO.Compression.ZipFileExtensions.ExtractToFile(System.IO.Compression.ZipArchiveEntry,System.String)">
  249. <summary>ZIP 보관 파일의 항목을 파일에 추출합니다.</summary>
  250. <param name="source">파일의 압축을 풀 zip 보관 위치 항목입니다.</param>
  251. <param name="destinationFileName">항목의 내용에서 만들 파일의 경로입니다.상대 또는 절대 경로를 지정할 수 있습니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  252. <exception cref="T:System.ArgumentException">
  253. <paramref name="destinationFileName" />가 길이가 0인 문자열이거나, 공백만 포함하거나, <see cref="F:System.IO.Path.InvalidPathChars" />로 정의된 하나 이상의 잘못된 문자를 포함하는 경우또는<paramref name="destinationFileName" />은 디렉터리를 지정합니다.</exception>
  254. <exception cref="T:System.ArgumentNullException">
  255. <paramref name="destinationFileName" />가 null입니다. </exception>
  256. <exception cref="T:System.IO.PathTooLongException">지정된 경로 또는 파일 이름이 시스템에 정의된 최대 길이를 초과하는 경우.예를 들어, Windows 기반 플랫폼에서는 경로에 248자 미만의 문자를 사용해야 하며 파일 이름에는 260자 미만의 문자를 사용해야 합니다.</exception>
  257. <exception cref="T:System.IO.DirectoryNotFoundException">지정된 경로가 잘못된 경우(예: 매핑되지 않은 드라이브의 경로를 지정한 경우) </exception>
  258. <exception cref="T:System.IO.IOException">
  259. <paramref name="destinationFileName" />이(가) 이미 있습니다.또는 I/O 오류가 발생하는 경우또는엔트리가 현재 쓰기용으로 열려 있습니다.또는엔트리가 보관 저장소에서 삭제되었습니다.</exception>
  260. <exception cref="T:System.UnauthorizedAccessException">새 파일을 만드는 데 필요한 권한이 호출자에게 없는 경우</exception>
  261. <exception cref="T:System.IO.InvalidDataException">항목이 보관 위치에 없거나 손상되어 열 수 없습니다.또는항목이 지원되지 않는 압축 방법으로 압축되었습니다.</exception>
  262. <exception cref="T:System.ObjectDisposedException">이 항목이 속하는 zip 보관 위치가 삭제되었습니다.</exception>
  263. <exception cref="T:System.NotSupportedException">
  264. <paramref name="destinationFileName" />의 형식이 잘못된 경우 또는이 항목에 대한 zip 압축 파일이 항목을 검색할 수 없는 <see cref="F:System.IO.Compression.ZipArchiveMode.Create" /> 모드로 열렸습니다.</exception>
  265. </member>
  266. <member name="M:System.IO.Compression.ZipFileExtensions.ExtractToFile(System.IO.Compression.ZipArchiveEntry,System.String,System.Boolean)">
  267. <summary>zip 보관 저장소의 항목을 파일에 추출하고 이름이 같은 기존 파일을 선택적으로 덮어씁니다.</summary>
  268. <param name="source">파일의 압축을 풀 zip 보관 위치 항목입니다.</param>
  269. <param name="destinationFileName">항목의 내용에서 만들 파일의 경로입니다.상대 또는 절대 경로를 지정할 수 있습니다.상대 경로는 현재 작업 디렉터리에 상대적으로 해석됩니다.</param>
  270. <param name="overwrite">대상 파일과 이름이 같은 기존 파일을 덮어쓰려면 true이고, 그렇지 않으면 false입니다.</param>
  271. <exception cref="T:System.ArgumentException">
  272. <paramref name="destinationFileName" />가 길이가 0인 문자열이거나, 공백만 포함하거나, <see cref="F:System.IO.Path.InvalidPathChars" />로 정의된 하나 이상의 잘못된 문자를 포함하는 경우또는<paramref name="destinationFileName" />은 디렉터리를 지정합니다.</exception>
  273. <exception cref="T:System.ArgumentNullException">
  274. <paramref name="destinationFileName" />가 null입니다. </exception>
  275. <exception cref="T:System.IO.PathTooLongException">지정된 경로 또는 파일 이름이 시스템에 정의된 최대 길이를 초과하는 경우.예를 들어, Windows 기반 플랫폼에서는 경로에 248자 미만의 문자를 사용해야 하며 파일 이름에는 260자 미만의 문자를 사용해야 합니다.</exception>
  276. <exception cref="T:System.IO.DirectoryNotFoundException">지정된 경로가 잘못된 경우(예: 매핑되지 않은 드라이브의 경로를 지정한 경우) </exception>
  277. <exception cref="T:System.IO.IOException">
  278. <paramref name="destinationFileName" />이 이미 있고 <paramref name="overwrite" />가 false인 경우또는 I/O 오류가 발생하는 경우또는엔트리가 현재 쓰기용으로 열려 있습니다.또는엔트리가 보관 저장소에서 삭제되었습니다.</exception>
  279. <exception cref="T:System.UnauthorizedAccessException">새 파일을 만드는 데 필요한 권한이 호출자에게 없는 경우</exception>
  280. <exception cref="T:System.IO.InvalidDataException">항목이 보관 위치에 없거나 손상되어 열 수 없습니다.또는항목이 지원되지 않는 압축 방법으로 압축되었습니다.</exception>
  281. <exception cref="T:System.ObjectDisposedException">이 항목이 속하는 zip 보관 위치가 삭제되었습니다.</exception>
  282. <exception cref="T:System.NotSupportedException">
  283. <paramref name="destinationFileName" />의 형식이 잘못된 경우 또는이 항목에 대한 zip 압축 파일이 항목을 검색할 수 없는 <see cref="F:System.IO.Compression.ZipArchiveMode.Create" /> 모드로 열렸습니다.</exception>
  284. </member>
  285. </members>
  286. </doc>