| 33 | } |
| 34 | |
| 35 | std::wstring CachedResource::TryCreateLocalCacheDirectory() |
| 36 | { |
| 37 | TryCreateLocalResourceCacheDirectory(); |
| 38 | auto path = GetLocalPath(); |
| 39 | TryCreateDirectory(path); |
| 40 | return path; |
| 41 | } |
| 42 | |
| 43 | OperationResult CachedResource::UpdateLocalPackage(std::string_view contents) |
| 44 | { |
nothing calls this directly
no test coverage detected