xref: /MusicFree/src/constants/pathConst.ts (revision 233cafa6d759d9d8f74658f7f6ae6d72949a2bc1)
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猫头猫
8*233cafa6S猫头猫const rootPath = RNFS.ExternalStorageDirectoryPath;
9*233cafa6S猫头猫
106c6f45bdS猫头猫
116c6f45bdS猫头猫export default {
126c6f45bdS猫头猫    pluginPath: `${basePath}/plugins/`,
13*233cafa6S猫头猫    dataPath: `${basePath}/data/`,
14*233cafa6S猫头猫    downloadPath: `${rootPath}/musicfree/`
156c6f45bdS猫头猫}