请问QT中如何实现文件复制呢???

请问QT中如何实现文件复制呢???,第1张

用QFile::copy

附Qt Assistant说明

bool QFile::copy ( const QString &fileName, const QString &newName ) [static]

This is an overloaded member function, provided for convenience.

Copies the file fileName to newName. Returns true if successfulotherwise returns false.

If a file with the name newName already exists, copy() returns false (i.e., QFile will not overwrite it).

See also rename().

看看自己导入什么模块慧枝,一般是QtCore、QtGui等,带上QtCore4.so、QtGui4.so这几个库就行了,也就这几个东西,还有复制qt/plugins目录里你用到的插件,例如codecs、imageformats目录常常是用到的。也就是说把QtCore4.so、QtGui4.so这几个前告敏复制到你的可执行程序目录,并且创建一个plugins目录,然后复制友贺qt/plugins里的codecs目录和imageformats目录(以及其他插件目录,如你用到数据库就需要sqldrivers)到这个plugins目录即可,也就这点东西

Linux系统复制U盘文件,需要先挂载U盘,方法分别如下搜带:

1、插入U盘到庆漏颂计算机USB接口,这时候U盘的硬件名称为:sda1。

2、在mnt目录下先建誉郑立一个usb的目录。

1

[root@localhost root]# mkdir /mnt/usb

3、挂载U盘。

1

mount -t vfat /dev/sda1 /mnt/usb

4、复制文件。

1

2

cp /mnt/usb/1.jpg /mnt

#复制U盘中1.jpg 到Linux系统根目录mnt下。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12228446.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-22
下一篇 2023-05-22

发表评论

登录后才能评论

评论列表(0条)

保存