创建 hdf5 文件时一直出现权限错误

keep having permission error while creating a hdf5 file

我有以下代码段来创建一个 hdf5 文件,并使用“with”语句来确保文件正确关闭。但是,我仍然收到如下错误消息。

   filename = 'E30.hdf5'
   try:
        with h5py.File(filename, 'w-') as f:
            print('---')
    except: 
        os.remove(filename)
        f = h5py.File(filename, 'w-')     

但是,我仍然收到如下错误信息。在工作目录中,可能已经存在名称为 'E30.hdf5' 的文件。但这真的重要吗?我试图直接从 windows 中删除它。但是,windows 不允许我删除它,说它正在打开。

---------------------------------------------------------------------------
OSError                                   Traceback (most recent call last)
<ipython-input-6-e8ccfbc1b5d2> in vid_to_hdf(En, start, end, chunk)
      9     try:
---> 10         with h5py.File(filename, 'w-') as f:
     11             print('---')

~\AppData\Local\Continuum\anaconda3\envs\fastai-py37\lib\site-packages\h5py\_hl\files.py in __init__(self, name, mode, driver, libver, userblock_size, swmr, rdcc_nslots, rdcc_nbytes, rdcc_w0, track_order, **kwds)
    407                                fapl, fcpl=make_fcpl(track_order=track_order),
--> 408                                swmr=swmr)
    409 

~\AppData\Local\Continuum\anaconda3\envs\fastai-py37\lib\site-packages\h5py\_hl\files.py in make_fid(name, mode, userblock_size, fapl, fcpl, swmr)
    176     elif mode in ['w-', 'x']:
--> 177         fid = h5f.create(name, h5f.ACC_EXCL, fapl=fapl, fcpl=fcpl)
    178     elif mode == 'w':

h5py\_objects.pyx in h5py._objects.with_phil.wrapper()

h5py\_objects.pyx in h5py._objects.with_phil.wrapper()

h5py\h5f.pyx in h5py.h5f.create()

OSError: Unable to create file (unable to open file: name = 'E30.hdf5', errno = 17, error message = 'File exists', flags = 15, o_flags = 502)

During handling of the above exception, another exception occurred:

PermissionError                           Traceback (most recent call last)
<timed eval> in <module>

<ipython-input-6-e8ccfbc1b5d2> in vid_to_hdf(En, start, end, chunk)
     11             print('---')
     12     except:
---> 13         os.remove(filename)
     14         f = h5py.File(filename, 'w-')
     15     # Create dataset within file

PermissionError: [WinError 32] The process cannot access the file because it is being used by another process: 'E30.hdf5'

您运行同时处理多个问题。 首先,让我们从 h5py.File() access_mode 标志开始。

  • w- : 创建文件,如果存在则失败(避免意外覆盖现有文件)
  • w : 创建文件,t运行cate if exists (means it overwrites an existing file)
  • r+ : Read/write, file must exist (用于打开现有文件写入数据).

在您下面的逻辑中,如果 E30.hdf5 不存在 ,您的 try:/except: 模式将执行 try: 语句。如果 E30.hdf5 存在 .

,它将执行 except: 语句

每个分支的不同 h5py.File() 方法使这变得复杂。您的 try: 分支使用 with h5py.File() as f: 方法。因此,当您的代码执行此逻辑时,文件将在最后干净地关闭(没有 f.close() 语句)。

但是,您的 except: 分支使用 f=h5py.File()。因此,当您的代码执行此逻辑时,您需要一个 f.close() 语句来确保在最后关闭。

这是我认为您遇到的情况:

  1. 我假设 E30.hdf5 在您第一次 运行 您的代码时不存在。
  2. 因此,您第一次 运行 时,您会通过 try: 分支并在最后干净地关闭文件。
  3. 下次您 运行 代码时,E30.hdf5 存在,因此,您通过 except: 分支。结果,该文件在进程结束时未关闭,另一个进程无法访问它(Python 或 OS)。

编码建议:

您的 except: 块具有相同的行为 mode=w。下面的代码行为相同,并且在进程完成时将始终关闭文件。此外,它更具可读性(恕我直言)。注意:这两种方法都会删除 E30.hdf5(如果存在)。

filename = 'E30.hdf5'
with h5py.File(filename, 'w') as f: # use mode=w
     print('---')

如果迫切需要保留 try:/except: 模式,请进行此更改:(使用 try:/except: 访问模式 w-r+ 非常有用,无需os.remove(filename).)

filename = 'E30.hdf5'
try:
    with h5py.File(filename, 'w-') as f:
        print('---')
except: 
    os.remove(filename)
    with h5py.File(filename, 'w-') as f:
         print('+++')