()
| 991 | |
| 992 | let _pictures: Folder; |
| 993 | export function pictures(): Folder { |
| 994 | _checkPlatform('pictures'); |
| 995 | if (!_pictures) { |
| 996 | const existingFolderInfo = getExistingFolderInfo(NSSearchPathDirectory.PicturesDirectory); |
| 997 | |
| 998 | if (existingFolderInfo) { |
| 999 | _pictures = existingFolderInfo.folder; |
| 1000 | _pictures._path = existingFolderInfo.path; |
| 1001 | _pictures._isKnown = true; |
| 1002 | } |
| 1003 | } |
| 1004 | |
| 1005 | return _pictures; |
| 1006 | } |
| 1007 | |
| 1008 | let _sharedPublic: Folder; |
| 1009 | export function sharedPublic(): Folder { |
nothing calls this directly
no test coverage detected