This commit is contained in:
zuowei1216
2025-12-22 21:06:29 +08:00
parent 8ea58fe480
commit 1b19ff1b92
179 changed files with 21895 additions and 3774 deletions

View File

@@ -0,0 +1,36 @@
import CSInterface, { SystemPath } from "./csinterface"
export class CEPPath {
constructor() {
}
static getUserData(): string {
const cs = new CSInterface()
return cs.getSystemPath(SystemPath.USER_DATA)
}
static getCommonFiles() {
const cs = new CSInterface()
return cs.getSystemPath(SystemPath.COMMON_FILES)
}
static getMyDocuments(): string {
const cs = new CSInterface()
return cs.getSystemPath(SystemPath.MY_DOCUMENTS)
}
static getApplication(): string {
const cs = new CSInterface()
return cs.getSystemPath(SystemPath.APPLICATION)
}
static getExtension(): string {
const cs = new CSInterface()
return cs.getSystemPath(SystemPath.EXTENSION)
}
static getHostApplication(): string {
const cs = new CSInterface()
return cs.getSystemPath(SystemPath.HOST_APPLICATION)
}
}