how to open file bat
#1

title
i need open file bat with cmd i try with this code :

http://pastebin.com/tESVdK22

ty for helpers
Reply
#2

your code is wrong...
pawn Код:
if (strcmp(cmdtext,"/123123", true ) == 0 )
        {
        if(!fexist("file.bat"))
        {
         print("Your file does not exist");
        }
       else
       {
        new File:example1 = fopen("file.bat", io_readwrite);
        if(example1)
       
            fwrite(example1,"asdasd");//write the file
            fread(example1, "asdasd");
            fclose(example1);
        }
    }
    return 1;
        }
Reply
#3

Quote:
Originally Posted by Eth
Посмотреть сообщение
your code is wrong...
pawn Код:
if (strcmp(cmdtext,"/123123", true ) == 0 )
        {
        if(!fexist("file.bat"))
        {
         print("Your file does not exist");
        }
       else
       {
        new File:example1 = fopen("file.bat", io_readwrite);
        if(example1)
       
            fwrite(example1,"asdasd");//write the file
            fread(example1, "asdasd");
            fclose(example1);
        }
    }
    return 1;
        }
again its not open my file
example :
write in txt file 123456
and i write the command in the game and the file is open in my computer.
Reply
#4

UP..
Reply
#5

Quote:
Originally Posted by ******
Посмотреть сообщение
If the file is open there are probably write locks in place.
So it is possible or not?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)