简体   繁体   中英

Using Windows network path with python

Is possible to use windows network path with python functions?

ex. //SERVERNAME/SharedFolder

For example something like os.makedirs('////SERVERNAME//SharedFolder//NewFolder')

It seems it doesn't work for me

Thanks, Federico

Try using raw string.

Ex:

os.makedirs(r'\\SERVERNAME\SharedFolder\NewFolder')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM