判断文件存在与编码方式
作者:互联网
int _ACCESS(LPCTSTR str, int mode) { #ifdef UNICODE return _waccess(str, mode); #else // USES_CONVERSION; // LPSTR lpStr = T2A((LPCTSTR)str); return _access(str, mode); #endif }
???编码方式影响函数调用?? windows与linux不同的函数调用?平台影响
标签:文件,判断,int,函数调用,LPCTSTR,mode,str,编码方式 来源: https://www.cnblogs.com/hshy/p/11525462.html