I have a file on my computer that I would like to locate the full path of.
The only way I can think of to find the path of that file is to use os.walk until I eventually find the file. This method can take a long time, as there are many many files.
The file is User Data, here is basically the sub path I am looking for \Google\Chrome\User Data.
Is there any faster way to get the full path of the file?
EDIT:
The file is generally found under \AppData\Local\. If there is a shortcut to get to this path, that would suffice.