MCPcopy Index your code
hub / github.com/NativeScript/NativeScript / pictures

Function pictures

packages/core/file-system/index.ts:993–1006  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 2

_checkPlatformFunction · 0.85
getExistingFolderInfoFunction · 0.85

Tested by

no test coverage detected