We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cannot use the latest version because of the following change. For example, in Windows I have the following network path:
\\192.168.1.10\folder1\folder2
The following code also replaces the first \\ to a \.
\\
\
\192.168.1.10\folder1\folder2
This will then not find any files.
I am currently using the following code. await new fdir().withMaxDepth(1).withFullPaths().crawl('\\192.168.1.10\folder1\folder2').withPromise();
await new fdir().withMaxDepth(1).withFullPaths().crawl('\\192.168.1.10\folder1\folder2').withPromise();
fdir/src/utils.ts
Line 15 in 7185259
The new option withPathSeparator(separator: "/" | "\") has the same effect.
/
The text was updated successfully, but these errors were encountered:
2965752
No branches or pull requests
I cannot use the latest version because of the following change.
For example, in Windows I have the following network path:
\\192.168.1.10\folder1\folder2
The following code also replaces the first
\\
to a\
.\192.168.1.10\folder1\folder2
This will then not find any files.
I am currently using the following code.
await new fdir().withMaxDepth(1).withFullPaths().crawl('\\192.168.1.10\folder1\folder2').withPromise();
fdir/src/utils.ts
Line 15 in 7185259
The new option withPathSeparator(separator: "
/
" | "\
") has the same effect.The text was updated successfully, but these errors were encountered: