cityhonghu 发表于 2009-3-31 20:50:18

使用插件是否可以更改某一个文件的文件名字?

本帖最后由 cityhonghu 于 2009-3-31 20:53 编辑

如题,使用插件是否可以实现更改addons\amxmodx\configs目录下的某一文件的文件名吗?

另问,停用插件的方法具体都有哪些呢?
已知方法:amxx pause xxx

zwfgdlc 发表于 2009-3-31 21:12:46


/* renames a file.returns 0 on failure, 1 on success.
* if relative true, rename_file will act like other natives which
* use the moddir as a base directory.otherwise, the current directory is
* undefined (but assumed to be hlds).
*/
native rename_file(const oldname[], const newname[], relative=0);

cityhonghu 发表于 2009-3-31 22:06:12

太谢谢你了。能不能具体举个例子呢?
比如把test.log改为old.log

zwfgdlc 发表于 2009-4-1 00:01:35


        new oldfile,newfile;
       
        get_configsdir(oldfile,63);
        get_configsdir(newfile,63);
       
        formatex(oldfile,63,"%s/44.txt",oldfile);
        formatex(newfile,63,"%s/66.abc",newfile);
       
        rename_file(oldfile,newfile,1);

cityhonghu 发表于 2009-4-1 00:20:09

楼上的,非常感谢你:victory:

ghost4.12 发表于 2010-5-2 20:54:52

学到不少
页: [1]
查看完整版本: 使用插件是否可以更改某一个文件的文件名字?