AttributeError: 'str' object has no attribute 'stem'
时间: 2023-08-05 09:10:25 浏览: 500
bcremoveobjectimageattributecontent:BC Remove Object Image Attribute Content 提供了一个稳定而灵活的解决方案,允许用户根据当前版本、所有版本或新版本动态删除内容对象图像属性内容。 提供对图像属性内容的脚本化操作!
这个错误是因为在代码中调用了一个字符串对象的 `stem` 属性,但字符串对象并没有这个属性。根据引用的内容,你可以将 `Path` 对象转换为字符串对象来解决这个问题。在你的代码中,将 `filename` 转换为字符串对象,即 `filename = str(filename)`。这样就可以成功调用 `stem` 属性了。
阅读全文