1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-19 11:10:23 +02:00
server-nalc/mods/wiki/oshelpers.lua

30 lines
461 B
Lua
Raw Normal View History

2014-10-28 18:01:32 +01:00
local WIN32, DIR_SEP
if os.getenv("WINDIR") then
WIN32 = true
DIR_SEP = "\\"
else
WIN32 = false
DIR_SEP = "/"
end
function os.mkdir(dir)
local f = io.open(dir..DIR_SEP..".dummy")
if f then
f:close()
else
if WIN32 then
dir = dir:gsub("/", "\\")
else
dir = dir:gsub("\\", "/")
end
os.execute("mkdir \""..dir.."\"")
local f = io.open(dir..DIR_SEP..".dummy", "w")
if f then
f:write("DO NOT DELETE!!!\n")
f:close()
end
end
end