当前位置 : 主页 > 编程语言 > c语言 >

C++中图片重命名实现代码

来源:互联网 收集:自由互联 发布时间:2021-06-05
非常简单的小程序,满足自己的需求。 #include iostream#include fstream#includesstreamusing namespace std; int main(){ int i=1,j=1; //本人程序中,i 和 j 是介于(0-9之间的数字),为了简单起见,这里给定

非常简单的小程序,满足自己的需求。

#include <iostream>
#include <fstream>
#include<sstream>
using namespace std;
 
int main()
{
  int i=1,j=1;   //本人程序中,i 和 j 是介于(0-9之间的数字),为了简单起见,这里给定初始值。
  string fname1= "C:\\Users\\Administrator\\Desktop\\121.bmp";  //源文件
  string fname2 = "C:\\Users\\Administrator\\Desktop\\";
 
  ostringstream oss;
  oss<<i<<j<<".bmp";
  fname2 += oss.str(); //将int型变量和string变量相加在一起
  //cout<<fname2<<endl;
 
  fstream f;
  f.open(fname1.c_str());
  if(!f)
  {
    cout<<"图片不存在!"<<endl;
  }
  else
  {
    
    rename(fname1.c_str(),fname2.c_str());
    cout<<"成功将重命名为"<<endl;
 
    f.close();
  }
 
  return 0;
 
}

文章到此结束,需要的朋友可可以参考一下。

网友评论