Download images path

download_images(path/file, dest, max_pics=400)

FileNotFoundError Traceback (most recent call last)
in
----> 1 download_images(path/file, dest, max_pics=400)

C:\ProgramData\Anaconda3\envs\fast\lib\site-packages\fastai\vision\data.py in download_images(urls, dest, max_pics, max_workers, timeout)
192 def download_images(urls:Union[Path, str], dest:PathOrStr, max_pics:int=1000, max_workers:int=8, timeout=4):
193 “Download images listed in text file urls to path dest, at most max_pics"
–> 194 urls = open(urls).read().strip().split(”\n")[:max_pics]
195 dest = Path(dest)
196 dest.mkdir(exist_ok=True)

FileNotFoundError: [Errno 2] No such file or directory: ‘data\fractal\urls_Feigenbaum-attractor.txt’

hey everyone, so i got a problem with download_images
As you can see i have “\” so it don’t find my file .txt (should be data\fractal\urls_Feigenbaum-attractor.txt)
How can i solve this problem?