Пример #1
0
        public static Value lib_fileiocommon_fileMove(VmContext vm, Value[] args)
        {
            int statusCode = FileIOCommonHelper.FileMove((string)args[1].internalValue, (string)args[2].internalValue, (bool)args[3].internalValue, (bool)args[4].internalValue);

            return(Interpreter.Vm.CrayonWrapper.buildInteger(vm.globals, statusCode));
        }