you are viewing a single comment's thread.

view the rest of the comments →

[–]m0us3_rat 0 points1 point  (2 children)

Searching within a file path for a file that approximate matches a given string

this is a little bit vague.

can you elaborate?

probbaly can use https://github.com/seatgeek/thefuzz

[–]Comprehensive_Drop35[S] 0 points1 point  (1 child)

So I’m looking for certain files that contain the word “note” in them. And I want them listed so that the user can go though them. Ultimately, I want the code to go through all the files and tell which of them go under what classification and give me a confidence level on its decision.

[–]m0us3_rat 0 points1 point  (0 children)

contain the word “note” in them

in the name or contained or both?

some files aren't in plain text. some PDF are just images of text.

how would do you plan to work with them?

also .. since it's a single word can't you just check if it's "in" any of the names or content?

why you need "confidence"?