This commit is contained in:
root 2025-07-11 17:23:54 +08:00
parent e7f6ea07ad
commit 4d590e7e97
1 changed files with 4 additions and 23 deletions

View File

@ -20,29 +20,10 @@ import PythonEnvManagerPage from './pages/PythonEnvManagerPage'
import * as path from '@tauri-apps/api/path';
import { convertFileSrc } from '@tauri-apps/api/core'
async function testPath() {
console.log({
appCacheDir: await path.appCacheDir(),
appConfigDir: await path.appConfigDir(),
appDataDir: await path.appDataDir(),
appLocalDataDir: await path.appLocalDataDir(),
audioDir: await path.audioDir(),
cacheDir: await path.cacheDir(),
configDir: await path.configDir(),
dataDir: await path.dataDir(),
desktopDir: await path.desktopDir(),
documentDir: await path.documentDir(),
downloadDir: await path.downloadDir(),
executableDir: await path.executableDir(),
fontDir: await path.fontDir(),
homeDir: await path.homeDir(),
localDataDir: await path.localDataDir(),
pictureDir: await path.pictureDir(),
publicDir: await path.publicDir(),
})
const mp4 = await path.join(await path.publicDir(), '1.mp4')
const url = convertFileSrc(mp4)
console.log({ mp4, url })
const appDataDirPath = await path.appDataDir();
const filePath = await path.join(appDataDirPath, 'assets/video.mp4');
const assetUrl = convertFileSrc(filePath);
console.log({ filePath, assetUrl })
}
function App() {