No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Russell Teapot edc9534fb0 Fix: shell.resolve not returning the correct absolute path
I was prepending the path with the current directory regardless
if the argument passed was already an absolute path or not
2026-08-28 11:21:21 +02:00
cc-desk.lua Fix: shell.resolve not returning the correct absolute path 2026-08-28 11:21:21 +02:00
README.md Updated README 2026-08-25 18:57:47 +02:00

cc-desk

Desktop compatible implementation of several ComputerCraft modules functions.

Usage

Assuming the library is available in LUA_PATH, simply require it:

local cc_desk = require "cc-desk"

fs = cc_desk.fs
shell = cc_desk.shell

Implementations

fs

  • .attributes
  • .exists
  • .find
  • .getDir
  • .isDir
  • .isReadOnly
  • .list
  • .makeDir

shell

  • .resolve

utils

Helper functions used in the implementations