HTM was throwing an exception for ReadOnly files.
So, to fix this an explicit FileAccess had to be set. Package.Open uses the default FileShare.None option. This causes a conflict and throws the 'UnauthorizedAccessException' exception. So, we just tell it that we are there to read it and everything is fine.
This commit is contained in:
		
							parent
							
								
									8faa0e6518
								
							
						
					
					
						commit
						b7d78f27be
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -281,7 +281,7 @@ namespace thememan | ||||||
| 
 | 
 | ||||||
|             try |             try | ||||||
|             { |             { | ||||||
|                 using (Package zip = Package.Open(zipFile.FullName, FileMode.Open)) |                 using (Package zip = Package.Open(zipFile.FullName, FileMode.Open, FileAccess.Read)) | ||||||
|                 { |                 { | ||||||
|                     PackagePartCollection parts = zip.GetParts(); |                     PackagePartCollection parts = zip.GetParts(); | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue