我想复制一个文件 从自我定位到另一个地点 类似:
var
NewFile : WideString;
MyOwnLocation : WideString;
begin
NewFile := C:mycopy.exe ;
// CopyFileW (PWideChar(paramstr(0)), PWideChar(NewFile), false); // ===> doesn t work
MyOwnLocation := paramstr(0);
CopyFileW (PWideChar(MyOwnLocation), PWideChar(NewFile), false); // ===> works but not sure if Unicode supported...
end;
当我把Pramstr(0)复制到宽链条时,它有效,但我仍然不确定paramstr(0)是否已经是UNICODE。也许有一个 WindowsAPI 返回我文件在宽链条中的当前位置吗?
感谢帮助:)