Hi everybody!
I'm currently working on a SubAdmin script, which uses FileExists. On my Windows server the following snippet works fine
if FileExists('SubAdmin/Admins/'+filterFilename(Name)+'.txt') then
begin
//...
end else
writeConsole(ID,'Account doesn''t exists!',$FF0000);
//...
but if I try the same script, with the same files on an ubuntu server, it always says "Account doesnt exists".
I tried it also without filterFilename, but the same result.
Anyboy have a idea?