cf.Count.files

Count.files()[source]

Return the names of any files containing parts of the data array.

See also

close

Returns
set

The file names in normalized, absolute form.

Examples:

>>> f = cf.read_field('../file[123].nc')
>>> f.files()
{'/data/user/file1.nc',
 '/data/user/file2.nc',
 '/data/user/file3.nc'}
>>> a = f.array
>>> f.files()
set()