完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我正在尝试计算 SD卡上的文件数,但出于某种原因,“getFileCount”函数总是返回 0 值。
奇怪的是 Config.txt 文件加载没有任何问题。 注意:SD 卡上没有目录。 任何帮助,将不胜感激。 代码:全选void SDcardInit(int sPin) { if (SD.begin(sPin)) { dbgCustomMsg(F(\"SD Card Init ... OK\")); myDelay(200); sd_File_Count = getFileCount(SD); myDelay(200); ConfigLoad(); // The Config.txt is loading without any issue } else { dbgCustomMsg(F(\"SD Card Init ... ERR\")); while (1) myDelay(100); return; } } int getFileCount(SDClass& sd) { char rootPath[] = \"/\"; if (!sd.exists(rootPath)) { Serial.println(\"Root directory not found!\"); return 0; } File root = sd.open(rootPath); if (!root) { Serial.println(\"Failed to open root directory!\"); return 0; } int fileCount = 0; while (true) { File entry = root.openNextFile(); if (!entry) { break; } fileCount++; entry.close(); } root.close(); return fileCount; } |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
528浏览 6评论
438浏览 5评论
有没有办法在不使用混杂模式的情况下实现Wifi驱动程序接收缓冲区访问中断呢?
425浏览 5评论
422浏览 4评论
398浏览 4评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-8 04:38 , Processed in 0.617703 second(s), Total 44, Slave 37 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号