(filename: string, destPath: string)
| 370 | |
| 371 | // Android only |
| 372 | copyFileRes(filename: string, destPath: string) { |
| 373 | if (!RNFSManager.copyFileRes) { |
| 374 | throw new Error('copyFileRes is not available on this platform'); |
| 375 | } |
| 376 | return RNFSManager.copyFileRes(filename, normalizeFilePath(destPath)).then(() => void 0); |
| 377 | }, |
| 378 | |
| 379 | // iOS only |
| 380 | // Copies fotos from asset-library (camera-roll) to a specific location |
nothing calls this directly
no test coverage detected