mirror of
https://github.com/nocobase/nocobase
synced 2024-11-18 05:37:09 +00:00
11 lines
175 B
TypeScript
11 lines
175 B
TypeScript
|
import { stat } from 'fs/promises';
|
||
|
|
||
|
export async function fsExists(path: string) {
|
||
|
try {
|
||
|
await stat(path);
|
||
|
return true;
|
||
|
} catch (error) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|