使用插件是否可以更改某一个文件的文件名字?
本帖最后由 cityhonghu 于 2009-3-31 20:53 编辑如题,使用插件是否可以实现更改addons\amxmodx\configs目录下的某一文件的文件名吗?
另问,停用插件的方法具体都有哪些呢?
已知方法:amxx pause xxx
/* 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);
太谢谢你了。能不能具体举个例子呢?
比如把test.log改为old.log
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);
楼上的,非常感谢你:victory: 学到不少
页:
[1]