Daniel Baird
03/27/2019, 7:01 PMvar entry = readdir(dp)
. The entry that is returned is a CPointer<dirent>. I want to use the dirent directly to get the name. One Attempt was to do this val name = entry[0].d_name.toString()
, but that is giving me a useless string that looks like this "CPointer(raw=0x2904670)"Daniel Baird
03/27/2019, 7:09 PMDominaezzz
03/27/2019, 7:24 PM.toKString()
instead.Daniel Baird
03/27/2019, 7:32 PM