1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-07-09 05:22:52 +00:00
2017-05-17 19:48:27 +01:00

19 lines
297 B
Lua

local tArgs = { ... }
if #tArgs < 1 then
print( "Usage: type <path>" )
return
end
local sPath = shell.resolve( tArgs[1] )
if fs.exists( sPath ) then
if fs.isDir( sPath ) then
print( "directory" )
else
print( "file" )
end
else
print( "No such path" )
end