Javascript 윈도우, 리눅스 상관없이 파일 경로 처리 하기

2024. 12. 5. 18:52Javascript

const filePath = "C:\\Users\\Public/Documents/file.txt";

// Split the path into components
const components = filePath.split(/[\/\\]/);
console.log(components);
// Output: ['C:', 'Users', 'Public', 'Documents', 'file.txt']