Javascript 윈도우, 리눅스 상관없이 파일 경로 처리 하기
const filePath = "C:\\Users\\Public/Documents/file.txt";// Split the path into componentsconst components = filePath.split(/[\/\\]/);console.log(components);// Output: ['C:', 'Users', 'Public', 'Documents', 'file.txt']
2024.12.05