1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-07-05 09:50:22 +02:00
server-nalc/mods/wiki/oshelpers.lua
2014-12-11 18:53:00 +01:00

30 lines
461 B
Lua
Executable File

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