尽管提升了PyCharm以管理员身份运行的权限,但仍引发权限错误

时间:2018-11-13 03:33:45

标签: python pycharm

我正在寻求帮助以解决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已经以管理员身份运行。

任何线索将不胜感激。预先谢谢你。

0 个答案:

没有答案