Directory.fullpath readonly property



The Directory.fullpath property returns a string representing the full path to the folder. The fullpath is set during the call to the Directory constructor, relative to the current working directory at this time.

Example

local dir = sys.Directory(sys.currentdir) -- outputs true print(dir.parent.fullpath == sys.Directory(sys.currentdir.."\\..").fullpath)