Giter VIP home page Giter VIP logo

Comments (4)

fhoedemakers avatar fhoedemakers commented on July 28, 2024 1

Wrote a little test program and it works fine. I can see the contents of the /filesystem folder of my Everdrive on my N64.

#include "libdragon.h"

// Read the contents of the SD card on an Everdrive 64
// Tested on an Everdrive 64 X7
// This code will list all files and directories in the /filesystem folder of the SD card
// Create a folder named "filesystem" on the root of the SD card and put some files in it.
int main() {
    debug_init(DEBUG_FEATURE_LOG_ISVIEWER);
    console_init();
    /* This will initialize the SD filesystem using 'sd:/' to identify it */
   if (!debug_init_sdfs("sd:/", -1)) {
	debugf("Error opening SD\n");
        printf("Error opening SD\n");
        exit(1);
    }
    dir_t dir;
    int err = dir_findfirst("sd:/",&dir);
    int count = 0;
    while( err == 0 ) {
        if (dir.d_type == DT_DIR) {
            printf("[%s]\n", dir.d_name);
        } else {
            printf("%s\n", dir.d_name);
        }
        err = dir_findnext("sd:/", &dir); 
        count++;  
    }
    if (count == 0) {
        printf("No files in this dir...\n");
    }   
}

Thanks again!

from libdragon.

rasky avatar rasky commented on July 28, 2024

It is indeed possible using dir_findfirst / dir_findnext, but I think it's currently buggy on trunk. It should be fixed in the preview branch. I'm merging lots of changes from preview to trunk in these days, I'll touch this issue once it's fixed.

from libdragon.

rasky avatar rasky commented on July 28, 2024

Hopefully the fix was merged in the latest merge train.

from libdragon.

fhoedemakers avatar fhoedemakers commented on July 28, 2024

Thanks again!

from libdragon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.