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
A file called 01 1234 foo.mp3 breaks the file listing parser.
01 1234 foo.mp3
Reducing the file name to one number makes the example below work.
let file: File = dbg!(File::from_str( "-r--r--r-- 1 23 23 1234567 Jan 1 2000 01 1234 foo.mp3", )) .ok() .unwrap(); assert_eq!(file.name, "01 1234 foo.mp3");
File::from_str() returns SyntaxError.
File::from_str()
SyntaxError
The text was updated successfully, but these errors were encountered:
fix: issue #69 Syntax error on name that staqrts with 2 number
78aee86
Sorry, something went wrong.
veeso
No branches or pull requests
Description
A file called
01 1234 foo.mp3
breaks the file listing parser.Reducing the file name to one number makes the example below work.
Steps to reproduce
File::from_str()
returnsSyntaxError
.Environment
The text was updated successfully, but these errors were encountered: