mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-14 18:51:04 +00:00
20 lines
603 B
TypeScript
20 lines
603 B
TypeScript
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import { lowercasePreservingWhitespace } from "openclaw/plugin-sdk/text-runtime";
|
|
|
|
export async function pathExists(filePath: string): Promise<boolean> {
|
|
try {
|
|
await fs.access(filePath);
|
|
return true;
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
export async function resolveArtifactKey(absolutePath: string): Promise<string> {
|
|
const canonicalPath = await fs.realpath(absolutePath).catch(() => path.resolve(absolutePath));
|
|
return process.platform === "win32"
|
|
? lowercasePreservingWhitespace(canonicalPath)
|
|
: canonicalPath;
|
|
}
|