Skip to main content

FindFile()

주어진 디렉터리에서 파일을 검색하여 해당 파일의 경로를 반환하는 함수입니다.

Signature

findFile: (dir: string, filename: string) => string | null

Parameters

Parameter

Type

Description

dir

string

검색할 디렉터리의 경로

filename

string

검색할 파일의 이름

Returns

string | null

해당 파일의 경로, 찾지 못한 경우 null 반환

Example

// 주어진 디렉터리에서 파일을 검색하는 예시
const filePath = findFile('src/components', 'index.js');