我正在寻求帮助以解决PyCharm中的以下问题:
以下代码:
#if there is a file with the same name, delete it first
if os.path.exists(csv_name + ".csv"):
os.remove(csv_name + ".csv")
#Now save the df_csv to csv at the needed location
df_csv.to_csv(csv_name + ".csv")
以下错误:
PermissionError:[WinError 5]访问被拒绝: 'csv_out \ example_csv.csv'
使用正确的名称但0个字节创建文件。
PyCharm已经以管理员身份运行。
任何线索将不胜感激。预先谢谢你。