在C脚本中如何用API函数创建文件夹?能给个例子么?
最佳答案
typedef struct SECURITY_ATTRIBUTES
{
long nLength;
long SecurityDescriptor;
long bInheritHandle;
}
SECURITY_ATTRIBUTES;
#pragma code("kernel32")
BOOL CreateDirectoryA(LPCTSTR,SECURITY_ATTRIBUTES);
#pragma code()
SECURITY_ATTRIBUTES SecAttr;
CreateDirectoryA("D:\\MYDIR",SecAttr);
关于API调用方法详见“WinCC信息系统->使用 WinCC ->用于创建函数和动作的 ANSI-C->在函数和动作中使用 DLL”章节;
提问者对于答案的评价:
xiexie!
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc272728.html