使用 python 访问文件并从共享/网络文件夹中读取/写入

发布于 2025-01-09 17:18:11 字数 117 浏览 0 评论 0原文

我想从网络文件夹读取和写入数据,到目前为止我已经尝试过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

中性美 2025-01-16 17:18:11

我总是在连接到网络驱动器时尝试 r 字符串(特别是使用 pandas 时)尝试这样做以将文件放入数据帧中

import pandas as pd
desired_file = r'\\networkdrive\folder\file.csv'
df = pd.read_csv(desired_file, , encoding='utf-8')

这使我们更容易将其视为具有 r 字符串的人,但如果您使用

print(desired_file)

您可以看到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

import pandas as pd
desired_file = r'\\networkdrive\folder\file.csv'
df = pd.read_csv(desired_file, , encoding='utf-8')

This makes it easier for us to just look at as people with the r string but if you use

print(desired_file)

You can see that python reads it the way that it needs to be formatted for pandas

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文