Fast dini question
#1

Can anyone tell me what the difference between
pawn Код:
if (!dini_Exists(file))
(Both with and without the "!")
and
pawn Код:
if(fexist(file))
is in Dini?

Hope you can help me. Thank you.
Reply
#2

give the all code then i can help you!
Reply
#3

Well, there is not really any code yet, im just wondering what the difference between those 2 is.
Reply
#4

Seriousley? No one knows?
Reply
#5

pawn Код:
if(!dini_Exists(file)) // If it doesn't exist
if(fexists(file)) // if it exists
// or...
if(dini_Exists(file)) // If it exists.
// the ! means .. DOESN'T
Note: fexists isn't default to dini.. it is part of the default file system.
Hope this helps!
Reply
#6

Thank you.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)