I'm trying to open shared folder using python(Windows 10)
this is the location that I try to get access : \\192.168.1.4\aaaa\form.txt
If I code like f= open("\\192.168.1.4\aaaa\form.txt",'w')
simple full code:
f=open("\\192.168.1.4\aaaa\form.txt",'w')
f.write("hihi test is it works?")
f.close()
It doesn't work because the letter '\'
So how can I access the file shared folder?