本文介绍了用等效的Linux替换_fullpath的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下代码继承自c ++ DOS文件。
I have the following code inherited from a c++ DOS file.
_fullpath ( audit_log , filename , 256 ) ;
我需要替换这段代码,以便我可以用g ++编译Linux版本并发现函数realpath所以打算进行以下替换:
I need to replace this code so that I can compile in g++ for Linux and found function realpath so intend to make following replacement:
realpath( filename , audit_log );
我可以确认:
1.前两个输入确实应该反转。
2.是否有一种简单的方法可以在realpath函数中指定256的缓冲区长度?我想我使用realpath得到了与缓冲区长度相关的错误。
Can I confirm that:
1. The first two inputs should indeed be reversed.
2. Is there an easy way to specify buffer length of 256 in the realpath function? I think I'm getting errors associated with buffer length using realpath.
推荐答案
这篇关于用等效的Linux替换_fullpath的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!