如何调用windowsAPI函数(20分)

  • 主题发起人 主题发起人 game_boy
  • 开始时间 开始时间
G

game_boy

Unregistered / Unconfirmed
GUEST, unregistred user!
如何调用windowsAPI函数如copyfileto
 
有这个API函数么?copyfileto?
 
copyfileex吧? msdn都没有copyfileto
 
是copyfile
 
copyfile(pchar(sourcefilename),pchar(targetfilename), true)
 
察看Windows SDK帮助文件或MSDN……
 
查了,没有copyfileto
是copyfile
 
pchar类型 与string类型 如何转换
 
pchar -> string : ;str := passtr(p)
string -> pchar : p := pchar(str)
 
上面不是有人写了: PChar(string变量)
 
CopyFile(pchar('c:/a1.txt'),pchar('c:/date'))这样写对吗?干吗出错:not enough actual parameters
 
copyfile(pchar(sourcefilename),pchar(targetfilename), true)
 
十分感谢以上同志的热心帮助,小弟再次十分的感谢!!!
 
多人接受答案了。
 
copyfile有三个参数,前面两个是 源文件和目标文件名, 第三个是表示当目标文件存在时,
是否覆盖,True不覆盖,False为覆盖,Msdn这么说的:
bFailIfExists
Specifies how this operation is to proceed if a file of the same name as that
;specified by lpNewFileName already exists. If this parameter is TRUE and the
new file already exists, the function fails. If this parameter is FALSE and
;the new file already exists, the function overwrites the existing file and
succeeds.
 
后退
顶部