编译器在构建时没有抱怨,我的程序说它有效,并创建了文件夹,但文件没有移动。我做错了什么?
#include <iostream>
#include <boost/filesystem.hpp>
using namespace std;
using namespace boost::filesystem;
char c = 'c';
bool move(){
if ((bool) rename("C:\\fldr1" "rawr.txt", "C:\\fldr2" "rared.txt") == (true)){
return true;
}
else{
return false;
}
}
int main(int argc, char argv[])
{
if (argv[1] = (c))
{
if (is_directory("C:\\fldr2")){
if (move){
cout << "Done 1!" << endl;
}
}
else{
cout << "Dir doesn't exist!" << endl;
if ((bool)create_directory("C:\\fldr2") == (true)){
if (move){
cout << "Done 2!" << endl;
}
}
}
}
return 0;
}
我正在使用Windows 7,CodeBlocks 10.05,G ++ 4.4.1和Boost 1.47
答案 0 :(得分:7)
我认为你的意思是
if (move()){
而不是
if (move){
第二种情况测试move
函数是否存在,即它的指针不是NULL(总是为真),第一种情况测试移动是否成功。
答案 1 :(得分:5)
if(void)
"C:\\fldr1" "rawr.txt" == "C:\\fldr1rawr.txt"
的隐式连接也可能产生不希望的结果。您可以执行以下操作:
bool move()
{
path src("C:\\fldr1\\rawr.txt");
path dest("C:\\fldr2\\rared.txt");
try {
rename(src, dest);
}
catch (...)
{
return false;
}
return exists(dest);
}
答案 2 :(得分:3)
if (move)
在这里测试函数指针不为null - 您需要实际调用该函数。尝试
if(move())