1

私は得ています:

Python - IOError: [Errno 13] Permission denied

ファイルから読みたい。私のコードは次のとおりです。

with open(in_filename, 'rb') as infile:
    with open(out_filename, 'wb') as outfile:
      outfile.write(b)
      while True:
        buf = infile.read(1024)
        if not buf:
            break
        outfile.write(cipher.update(buf)) 
      outfile.write( cipher.final() )  
      outfile.close()
    infile.close()

行でエラーが発生してwith open(in_filename, 'rb') as infile:います。

infile= c:\\users\\cipher~1\\appdata\\local\\temp\\CCB\\16977740fbd0f8491aca818446b9d6c703a2b14d\\allpolicies.rtf


out_filename= D:\\one.rtf

ファイル内の場所を tempfile.gettempdir() + os.sep +"CCB" として生成し、次のフォルダー生成にハッシュ関数を使用しています。次に、その場所にファイルを配置します。

私も試してみましos.sepたが、うまくいきませんでした。.txt ファイルで正常に動作する同じコード。

4

0 に答える 0