toValidFilePath 
Node.js 런타임 필요 ('qsu/node')경로에 있는 유효하지 않거나 불필요한 문자를 제거합니다.
Parameters
filePath::stringisWindows::boolean: Whether the target operating system to be checked is Windows
Named
Returns
string
Examples
javascript
toValidFilePath('C:\\Windows\\System32\\', true); // 'C:\Windows\System32'
toValidFilePath('home/user/.bashrc'); // '/home/user/.bashrc'dart
toValidFilePath('C:\\Windows\\System32\\', isWindows: true); // 'C:\Windows\System32'
toValidFilePath('home/user/.bashrc'); // '/home/user/.bashrc'