PyInstaller不能访问我在编译时捆绑的文件

时间:2019-08-29 21:59:04

标签: python-3.x pyinstaller

这似乎是一个愚蠢的问题,但是我编译的代码试图从exe所在的目录访问文件,但是exe具有相同的路径和所需的文件。我在做什么错了?

1 个答案:

答案 0 :(得分:0)

找到了我的答案here

<?xml version="1.0"?>
<configuration>
  <!-- this would be for just that one file -->
  <location path="UserGuid.PDF">
    <system.web>
      <authorization>
        <allow roles="Admin"/>
        <deny users="*"/>
      </authorization>
    </system.web>
  </location>

  <!-- this would be for whole directory -->
  <system.web>
    <authorization>
      <allow roles="Admin"/>
      <deny users="*"/>
    </authorization>
  </system.web>

</configuration>