如何从 jupyter notebook 中的文件夹访问文件名

How to access file names from a folder in a jupyter notebook

我正在使用 jupyter notebook 和 python,我有一个名为 'images' 的文件夹,里面的图片标题为 'image0'、'image1'、'image2', etc. 我想访问这个文件夹,查看文件夹里面最大的图片编号。如何访问该文件夹以查看其中图像的名称?

我试过了:

imagesList = []
    for image in images:
       imagesList.append(image)

imageNum = []
for image in images:
    imageNum.append(int(image[5:]))
max = 0 
for item in imageNum:
    if item>max:
        max = item
print(max)

但我得到 'images is not defined'。

我也试过:

for image in home/jovyan/images:

但是这个给我'home'是没有定义的。 如何访问此文件夹中的图像名称?

谢谢!

import os
folder_files = os.listdir('images') #You can also use full path.
print("This Folder contains {len_folder} file(s).".format(len_folder=len(folder_files)))

for file in folder_files:
    #Action with these files
    print(file)