xref: /MusicFree/src/constants/pathConst.ts (revision 7f7716138b584ea61557eb0caf3c49cad241bad9)
16c6f45bdS猫头猫import { Platform } from "react-native";
26c6f45bdS猫头猫import RNFS from 'react-native-fs';
36c6f45bdS猫头猫
46c6f45bdS猫头猫export const basePath = Platform.OS === 'android'
56c6f45bdS猫头猫  ? RNFS.ExternalDirectoryPath
66c6f45bdS猫头猫  : RNFS.DocumentDirectoryPath
76c6f45bdS猫头猫
86780f402S猫头猫const storagePath = RNFS.ExternalStorageDirectoryPath;
9233cafa6S猫头猫
106c6f45bdS猫头猫
116c6f45bdS猫头猫export default {
126c6f45bdS猫头猫    pluginPath: `${basePath}/plugins/`,
13*7f771613S猫头猫    logPath: `${basePath}/log/`,
14233cafa6S猫头猫    dataPath: `${basePath}/data/`,
15*7f771613S猫头猫    cachePath: `${basePath}/cache/`,
166780f402S猫头猫    storagePath: `${storagePath}/musicfree/`,
176780f402S猫头猫    downloadPath: `${storagePath}/musicfree/download/`
186c6f45bdS猫头猫}