gpt4 book ai didi

python - 我无法获取文件夹的大小

转载 作者:太空宇宙 更新时间:2023-11-03 19:41:33 24 4
gpt4 key购买 nike

我知道有这样的问题,但我仍然想问这个,因为我无法解决,所以这是我的代码:

#! python3
import os

my_path = 'E:\\Movies'
for folder in os.listdir(my_path):
size = os.path.getsize(folder)
print(f'size of the {folder} is: {size} ')

我得到了这个错误:

Traceback (most recent call last):
File "c:/Users/ataba/OneDrive/Masaüstü/Programming/python/findingfiles.py", line 7, in <module>
size = os.path.getsize(folder)
File "C:\Program Files\Python37\lib\genericpath.py", line 50, in getsize
return os.stat(filename).st_size
FileNotFoundError: [WinError 2] The system cannot find the file specified: 'FordvFerrari1080p'

当我编写 print(folder) 而不是获取其大小时,它会显示文件夹,因此我认为程序不会找到它们。

最佳答案

问题可能是您仅将文件夹名称而不是文件夹的整个路径作为参数传递给 os.path.getsize()

关于python - 我无法获取文件夹的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60396222/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com