GetFilePaths()
주어진 파일 경로의 모든 하위 경로를 반환합니다.
Signature
getFilePaths: (path: string) => Promise<string[]>
Parameters
Parameter | Type | Description |
---|---|---|
path | string | 파일 경로. 이 경로의 모든 하위 경로가 반환됩니다. |
Returns
Promise<string[]>
Example
const paths = await getFilePaths('./src');
console.log(paths); // ['./src/index.ts', './src/utils.ts', ...]