使用 python 访问文件并从共享/网络文件夹中读取/写入
我想从网络文件夹读取和写入数据,到目前为止我已经尝试过 os.open("\u 驱动器路径") , open("\u 驱动器路径") 但它说访问或权限被拒绝 但是当我使用 os.startfile("\u 驱动器路径")
i want to read and write data from network folder, so far i have tried
os.open("\u drive path") , open("\u drive path")
but it says accesss or permission denied
but when i use
os.startfile("\u drive path")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我总是在连接到网络驱动器时尝试 r 字符串(特别是使用 pandas 时)尝试这样做以将文件放入数据帧中
这使我们更容易将其视为具有 r 字符串的人,但如果您使用
您可以看到python 以需要为 pandas 格式化的方式读取它
I always try r strings when connecting to a network drive (especially if using pandas) try doing this to put the file into a dataframe
This makes it easier for us to just look at as people with the r string but if you use
You can see that python reads it the way that it needs to be formatted for pandas