1029 posts
Location
Missouri, United States, America, Earth, Solar System, Milky Way, Universe 42B, Life Street, Multiverse, 4th Dimension
Posted 13 December 2014 - 11:29 PM
/title. I need to know how fs.combine works, and what it really does. I'm working on a networked storage program and need to know how the default fs.combine so I can rewrite it to work with the network accordingly. I have no understanding of what the function currently does and the wiki does not help.
Thanks in advance.
Edited on 13 December 2014 - 11:20 PM
3057 posts
Location
United States of America
Posted 13 December 2014 - 11:37 PM
print( fs.combine( "rom", "test" ) )
Result:
rom/test
You can put "/" in front of rom, after rom, before test, after test, etc. and it will still come out with "rom/test"
1029 posts
Location
Missouri, United States, America, Earth, Solar System, Milky Way, Universe 42B, Life Street, Multiverse, 4th Dimension
Posted 13 December 2014 - 11:42 PM
I removed my current rewrite of fs.combine and tested it just for fun to find it worked ._.
I guess that's irony. Thanks anyway.